-
Notifications
You must be signed in to change notification settings - Fork 1
/
login.html
43 lines (41 loc) · 1.31 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
42
43
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Login Form</title>
<link rel="stylesheet" href="assets/css/loginstyle.css" />
</head>
<body>
<section>
<div class="login-box">
<form action="">
<h2>Login</h2>
<div class="input-box">
<span class="icon"><ion-icon name="mail"></ion-icon> </span>
<input type="email" required>
<label> Email</label>
</div>
<div class="input-box">
<span class="icon"><ion-icon name="lock-closed"></ion-icon> </span>
<input type="password" required>
<label> Password</label>
</div>
<div class="remember-forget">
<label>
<input type="checkbox">Remember Me
</label>
<a href="#">Forget Password</a>
</div>
<button type="Submit">Login</button>
<div class="register-link">
<p>Don't have an account?
<a href="#">Register</a>
</p>
</div>
</form>
</div>
</section>
<!-- <script type="module" src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.js"></script> -->
</body>