-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin_or_user.php
More file actions
57 lines (50 loc) · 941 Bytes
/
admin_or_user.php
File metadata and controls
57 lines (50 loc) · 941 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html>
<head>
<style>
.Reg{
position: absolute;
top: 50%;
left: 34%;
}
h1 a
{
text-decoration:none;
color: white;
padding:10px 40px;
transition:0.5s ease;
}
h1 a:hover
{
background-color:#00b33c;
}
</style>
<title>user selection</title>
<link href="style.css" rel="stylesheet" type="text/css">
</head>
<body>
<header>
<div class="main">
<ul>
<li class="active"><a href="index.php">Home</a></li>
<li><a href="contact.php">Contact</a></li>
<li class="active"><a href="reg.php">Registration</a></li>
</ul>
</div>
<div class="Head">
<h1>CONTINENTAL</h1>
</div>
<div align="center" class="gallery">
<img src="picture/logo.png"><br>
</div>
<div class="Reg" align ="center">
<h2>Sign in as student or admin:</h2></br>
<div>
<h1><a href="admin_login.php">ADMIN</a> <a href="guest_login.php">STUDENT</a></h1><br>
</div>
</div>
<div class="footer" align="center">
</div>
</header>
</body>
</html>