-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (24 loc) · 848 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dancing</title>
<link rel="icon" href="/img/609oncomingpolicecar_100542.ico">
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Welcome to the Police Station Website</h1>
<div class="loginbox">
<h2>Login</h2>
<form action="/second.html">
<p>Police ID</p>
<input type="text" name="Police ID" id="user" placeholder="Enter your ID" required>
<p>Password</p>
<input type="password" name="Password" id="pass" placeholder="Enter the password" required>
<button type="submit">Login</button>
<h3>Not Registered? <a href="/register.html"> Register here.</a></h3>
</form>
</div>
</body>
</html>