-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
73 lines (62 loc) · 2.44 KB
/
index.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
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
70
71
72
73
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!--=============== REMIXICONS ===============-->
<link href="https://cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/remixicon.css" rel="stylesheet" />
<!--=============== CSS ===============-->
<link rel="stylesheet" href="./assets/css/styles.css" />
<title>Responsive login form</title>
</head>
<body>
<div class="container">
<div class="login">
<div class="login__content">
<img class="login__img" src="./assets/img/bg-login.png" alt="Login image" />
<form class="login__form">
<div>
<h1 class="login__title">
<span>Welcome</span> Back
</h1>
<p class="login__description">
Welcome! Please login to continue.
</p>
</div>
<div>
<div class="login__inputs">
<div>
<label for="email" class="login__label">Email</label>
<input class="login__input" type="email" id="email" placeholder="Enter your email address" required />
</div>
<div>
<label for="password" class="login__label">Password</label>
<div class="login__box">
<input class="login__input" type="password" id="password" placeholder="Enter your password" required />
<i class="ri-eye-off-line login__eye" id="input-icon"></i>
</div>
</div>
</div>
<div class="login__check">
<label class="login__check-label" for="check">
<input class="login__check-input" type="checkbox" id="check" />
<i class="ri-check-line login__check-icon"></i>
Remember me
</label>
</div>
</div>
<div>
<div class="login__buttons">
<button class="login__button">Log In</button>
<button class="login__button login__button-ghost">Sign Up</button>
</div>
<a class="login__forgot" href="#">Forgot Password?</a>
</div>
</form>
</div>
</div>
</div>
<!--=============== MAIN JS ===============-->
<script src="./assets/js/main.js"></script>
</body>
</html>