-
Notifications
You must be signed in to change notification settings - Fork 0
/
login.html
41 lines (39 loc) · 1.57 KB
/
login.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="login.css">
<title>log in page</title>
</head>
<body>
<section>
<div class="form-box">
<div class="form-value">
<form action="">
<div class="head">
<h2>Login</h2>
</div>
<div class="inputbox">
<ion-icon name="mail-outline"></ion-icon>
<input type="email" id="op" required>
<label for="">Email</label>
</div>
<div class="inputbox">
<ion-icon name="lock-closed-outline"></ion-icon>
<input type="password" required>
<label for="">Password</label>
</div>
<div class="forget">
<label for=""><input type="checkbox">Remember Me <a href="#">Forget Password</a></label>
</div>
<button>Log in</button>
<div class="register">
<p>Don't have a account <a href="index.html">Register</a></p>
</div>
</form>
</div>
</div>
</section>
<script type="module" src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.js"></script>
</body>
</html>