-
Notifications
You must be signed in to change notification settings - Fork 28
/
index.html
63 lines (50 loc) · 2.34 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
<!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>Animated login form - Bedimcode</title>
</head>
<body>
<div class="login">
<img src="assets/img/login-bg.png" alt="login image" class="login__img">
<form action="" class="login__form">
<h1 class="login__title">Login</h1>
<div class="login__content">
<div class="login__box">
<i class="ri-user-3-line login__icon"></i>
<div class="login__box-input">
<input type="email" required class="login__input" id="login-email" placeholder=" ">
<label for="login-email" class="login__label">Email</label>
</div>
</div>
<div class="login__box">
<i class="ri-lock-2-line login__icon"></i>
<div class="login__box-input">
<input type="password" required class="login__input" id="login-pass" placeholder=" ">
<label for="login-pass" class="login__label">Password</label>
<i class="ri-eye-off-line login__eye" id="login-eye"></i>
</div>
</div>
</div>
<div class="login__check">
<div class="login__check-group">
<input type="checkbox" class="login__check-input" id="login-check">
<label for="login-check" class="login__check-label">Remember me</label>
</div>
<a href="#" class="login__forgot">Forgot Password?</a>
</div>
<button type="submit" class="login__button">Login</button>
<p class="login__register">
Don't have an account? <a href="#">Register</a>
</p>
</form>
</div>
<!--=============== MAIN JS ===============-->
<script src="assets/js/main.js"></script>
</body>
</html>