-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforgotpassword.html
More file actions
43 lines (43 loc) · 1.82 KB
/
forgotpassword.html
File metadata and controls
43 lines (43 loc) · 1.82 KB
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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/forgotpassword.css">
<link rel="stylesheet" href="assets/fonts/fonts.css">
<link rel="icon" type="icon" href="assets/img/logo_light.png">
<script src="js/forgotpassword.js"></script>
<title>JOIN | I forgot my password</title>
</head>
<body>
<section>
<header>
<div class="headerLeft">
<img src="assets/img/Logo_dark.png" alt="">
</div>
</header>
<div class="Background">
<div class="forgotFrame">
<a href="index.html"><img class="arrow" src="assets/img/arrow-left-line.svg" alt=""></a>
<div class="forgotContent">
<p class="forgotHeader">I forgot my password</p>
<img src="assets/img/login_underline.png" alt="">
<span class="dontWorry">Don't worry! We will send you an email with the instructions to reset your password.</span>
<form class="login" onsubmit="onSubmit(event)">
<div class="loginInput">
<div class="input">
<input required type="email" id="email" name="email" placeholder="Email">
<img src="assets/img/email_input.svg" alt="">
</div>
<div class="Btn">
<button type="submit" class="forgotBtn button">Send me the email</button>
</div>
</form>
</div>
</div>
</div>
<div class="dnone" id="sendMailMsg"></div>
</section>
</body>
</html>