-
Notifications
You must be signed in to change notification settings - Fork 0
/
loginPage.html
37 lines (37 loc) · 1.5 KB
/
loginPage.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
<!DOCTYPE html>
<html>
<head>
<title>Login Page</title>
<link rel="stylesheet" href="./StyleLoginPage.css">
<meta charset="UTF-8">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/ionicons@5.5.3/css/ionicons.min.css">
</head>
<body>
<section class="signing">
<form class="content">
<h2> Sign In </h2>
<div class="form">
<div class="inputBox">
<input type="email" required>
<label for=""> Email <ion-icon name="mail-outline"></ion-icon> </label>
</div>
<div class="inputBox">
<input type="text" required>
<label> Password <ion-icon name="lock-closed-outline"></ion-icon> </label>
</div>
<div class="forget">
<label><input type="checkbox"> Remember me</label>
<a href="#">Forget Password</a>
</div>
<div class="intputBox">
<input type="submit" value="Login">
</div>
<div class="register">
<label>Don't have an account <a href="#">Register</a></label>
</div>
</div>
</form>
</section>
<script src="https://cdn.jsdelivr.net/npm/ionicons@5.5.3/dist/ionicons/ionicons.js"></script>
</body>
</html>