-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlog.html
More file actions
69 lines (35 loc) · 1.18 KB
/
log.html
File metadata and controls
69 lines (35 loc) · 1.18 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Log in page</title>
<link rel="stylesheet" href="log.css"></link>
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
</head>
<body>
<div class="login">
<form action="">
<h1>Login</h1>
<div class="input-box">
<label><input type="text" placeholder="Enter your username"></label>
<i class='bx bxs-user' ></i>
</div>
<div class="input-box">
<form action="">
<label><input type="text" placeholder="Enter Your Password"></label>
<i class='bx bxs-lock-alt'></i>
</div>
<div class="rem-forgot">
<label><input type="checkbox" >Remember me</input></label>
<a href="#">Forgot password</a>
</div>
<button>Login</button>
<div class="reg">
<label>Don't Have account</label>
<a href="#">Register</a>
</div>
</div>
</form>
</body>
</html>