-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreset-password.html
67 lines (56 loc) · 3.37 KB
/
reset-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
<!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">
<title>Reset password | Join</title>
<link rel="icon" href="./assets/img/logo-dark.png" type="image/png">
<link rel="stylesheet" href="./css/fonts.css">
<link rel="stylesheet" href="./css/variables.css">
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="./css/login.css">
<script src="./smallest_backend_ever/mini_backend.js"></script>
<script src="./js/script.js"></script>
<script src="./js/login.js"></script>
<script src="./js/login-templates.js"></script>
</head>
<body onload="initResetPassword()" class="body-signup">
<img src="./assets/img/logo-light.png" alt="Join Logo" class="logo-login">
<section class="login-site">
<div id="reset_password_container" class="login-content">
<a href="./index.html"><img src="./assets/img/arrow-back.png" alt="back to login" class="signup-back"></a>
<div class="headline-container">
<h1 class="headline">Reset your password</h1>
<div class="login-headline-border"></div>
</div>
<form onsubmit="resetPassword(); return false;">
<div class="reset-password-text">
Set your new password and confirm it afterwards.
</div>
<div class="input border-bottom">
<input id="user_password" type="password" placeholder="New password" autocomplete="off" required class="input-forgot-password">
<img id="user_password_icon" src="./assets/img/login-password.png" alt="password symbol">
<img id="user_password_hidden" onclick="passwordVisibility()" src="./assets/img/password-hidden.png" alt="password symbol" class="display-none">
<img id="user_password_visible" onclick="passwordVisibility()" src="./assets/img/password-visible.png" alt="password symbol" class="display-none">
</div>
<div class="input border-bottom">
<input id="new_password_confirm" type="password" placeholder="Confirm password" autocomplete="off" required class="input-forgot-password">
<img id="user_password_confirm_icon" src="./assets/img/login-password.png" alt="password symbol">
<img id="user_password_confirm_hidden" onclick="passwordConfirmVisibility()" src="./assets/img/password-hidden.png" alt="password symbol" class="display-none">
<img id="user_password_confirm_visible" onclick="passwordConfirmVisibility()" src="./assets/img/password-visible.png" alt="password symbol" class="display-none">
</div>
<div class="check-user-data">
<span id="password_check" class="user-data-assign display-none">Passwords do not match</span>
</div>
<div class="check-user-data">
<span id="email_check" class="user-data-assign display-none">Your email adress is not registered.</span>
</div>
<div class="login-btns-container">
<button type="submit" class="btn">Continue</button>
</div>
</form>
</div>
</section>
</body>
</html>