-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforget-password.html
85 lines (76 loc) · 2.31 KB
/
forget-password.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
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tag -->
<meta charset="UTF-8" />
<meta name="description" content="Blog Layout" />
<meta name="keywords" content="news, Blog Post" />
<meta name="author" content="Saddam Arbaa" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<!-- First Mobile Viewport -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Connect to the Font Awesome -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css"
integrity="sha512-xh6O/CkQoPOWDdYTDqeRdPCVd1SpvCA9XXcUnZS2FmJNp1coAFzvtCN9BmamE+4aHK8yyUHUSCcJHgXloTyT2A=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<!-- the Main CSS File -->
<link rel="stylesheet" href="./src/styles/style.css" />
<!-- login css file -->
<link rel="stylesheet" href="./src/styles/login.css" />
<!-- load this one directly -->
<!-- <script src="./scripts/sessions.js"></script> -->
<!-- Main Js file -->
<script src="./dist/scripts/forgot-password.js" type="module"></script>
<!-- title -->
<title>Forgot password<</title>
</head>
<body>
<main class="container">
<form action="#" class="form" id="forgotPassword" autocomplete="of">
<h2 class="title">Forgot your password?</h2>
<div class="message">
<p>
Don't worry just type in your email and we will send you a code to
reset your password
</p>
</div>
<div class="input-group">
<label for="email" class="label">Email</label>
<p class="error-message"></p>
<div class="input-control">
<i class="fa-solid fa-envelope"></i>
<input
type="email"
id="email"
name="email"
placeholder="Your email"
class="input"
/>
<div class="icon">
<i class="fa-solid fa-circle-check"></i>
</div>
<div class="icon-error">
<i class="fa-solid fa-circle-exclamation"></i>
</div>
</div>
</div>
<div class="buttons">
<input
type="submit"
class="button"
value=" Rest Password"
id="rest-password"
/>
<p id="redirectTLoginPage">
<span> Back to login? </span>
</p>
</div>
</form>
</main>
</body>
</html>