-
Notifications
You must be signed in to change notification settings - Fork 0
/
resetpassword.html
48 lines (46 loc) · 1.98 KB
/
resetpassword.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
<!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/resetpassword.css">
<link rel="stylesheet" href="assets/fonts/fonts.css">
<link rel="icon" type="icon" href="assets/img/logo_light.png">
<script src="js/mini_backend.js"></script>
<script src="js/resetpassword.js"></script>
<title>JOIN | Reset your password</title>
</head>
<body onload="init()">
<section>
<header>
<div class="headerLeft">
<img src="assets/img/Logo_dark.png" alt="">
</div>
</header>
<div class="Background">
<div class="resetFrame">
<a href="index.html"><img class="arrow" src="assets/img/arrow-left-line.svg" alt=""></a>
<div class="resetContent">
<p class="resetHeader">Reset your password</p>
<img src="assets/img/login_underline.png" alt="">
<p class="resetSecHeader">Change your account password</p>
<form class="login" onsubmit="resetPassword(); return false">
<div class="loginInput">
<div class="input">
<input required type="password" id="newPassword" minlength="5" placeholder="New password">
</div>
<div class="input">
<input required type="password" id="confirmPassword" minlength="5" placeholder="Confirm password">
</div>
<div class="Btn">
<button type="submit" class="resetBtn button">Continue</button>
</div>
</form>
</div>
</div>
</div>
<div class="dnone" id="sendMailMsg"></div>
</section>
</body>
</html>