-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
44 lines (29 loc) · 840 Bytes
/
index.html
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
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<title>WELCOME TO CMRIT</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="bodydiv">
<form name="Login" action="http://localhost/project/auth.php" method="post">
<header>Login</header>
<label>ID Number </label>
<input type="Number" name="ID" min="1" max="99999" required=""/>
<label>Password</label>
<input type="Password" name="PASSWORD" required="" />
<div class="drop"> <select name="department">
<option value="OFFICE">OFFICE</option>
<option value="SECURITY">SECURITY</option>
</select>
<button input type="submit" name="login">LOGIN</button>
</form>
</div>
</div>
<ul>
<li><a href="#">Contact</a></li>
<li><a href="http://localhost/project/about.php">About</a></li>
</ul>
</body>
</html>