-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (30 loc) · 889 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login</title>
<link rel="stylesheet" href="/index.css">
</head>
<body>
<div id="box">
<form>
<h1>Login</h1>
<input id="loguser" type="text" placeholder="Username">
<br>
<br>
<input id="logpass" type="text" placeholder="Password">
<br>
<br>
<button><a href="/forget.html">Forget Password</a></button>
<br>
<br>
<input id="Login" type="submit" placeholder="Login"/>
<br>
<br>
<button><a href="create.html">Create Account</a></button>
</form>
</div>
</body>
<script src="/login.js"></script>
</html>