-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (36 loc) · 1000 Bytes
/
index.html
File metadata and controls
40 lines (36 loc) · 1000 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Web Test</title>
<link rel="stylesheet" href="styles.css">
<script defer src="script.js"></script>
</head>
<body>
<section>
<h1>Login</h1>
<div class="inputbox">
<icon-icon name="mail-outline"></icon-icon>
<input type="email" required>
<label for = "">Username</label>
</div>
<div class="inputbox">
<icon-icon name="lock-closed-outline"></icon-icon>
<input type="password" required>
<label for = "">password</label>
</div>
<div class="forget">
<input type="checkbox">
<label for = "">Remember me</label>
<a href="forget.html">forgot password?</a>
</div>
<button>Login</button>
<div class="register">
<p>I dont have an account</p>
<a href="register.html">Register</a>
</div>
</div>
</section>
</body>
</html>