-
Notifications
You must be signed in to change notification settings - Fork 1
/
createpassword.html
72 lines (70 loc) · 2.5 KB
/
createpassword.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
<!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="./styles/page_loading_animation.css">
<script src="./components/page_loading_animation.js"></script>
<script src="https://kit.fontawesome.com/fb700f3d70.js"></script>
<link rel="stylesheet" href="./styles/createpassword.css">
<title>Enter Password</title>
</head>
<body onload="loaderAnimation()">
<div id="wrapper"><div class="loader"></div></div>
<div id="loginbox">
<div id="logo">
<img src="https://prod.smassets.net/assets/website/2.182.0/images/logo-surveymonkey.svg" alt="logo">
</div>
<div id="form">
<div class="signup">
<p>
<a href="signup.html"><i class="fa-solid fa-angle-left"></i> Back</a>
</p>
</div>
<h1>Create password</h1>
<label for="password" id="showpass"></label>
<label>
<b>Enter a password</b>
</label>
<div class="input-email">
<input onkeypress="submitOnEnter(event)" oninput="enableButton()" class="pass-input1" id="email" type="password" aria-required="true" aria-label="Email address">
</div>
<p>
Enter at least 8 characters. Don't use common words, names, or sequential or repeated characters.
</p>
<label>
<b>Confirm password</b>
</label>
<div class="confirm-email">
<input onkeypress="submitOnEnter(event)" oninput="enableButton()" class="pass-input2" id="confirm-mail" type="password" aria-required="true" aria-label="Email address">
</div>
<button onclick="savePass()" id="submitButton" class="button-disabled" type="submit" disabled="true">
Create account
</button>
</div>
</div>
</div>
<div class="bottom">
<a href="#">
Help
</a>
<a href="#">
Terms of Use
</a>
<a href="#">
Privacy Notice
</a>
<a href="#">
California Privacy Notice
</a>
<a href="#">
Cookies Policiy
</a>
<a href="#">
Cookie Preferences
</a>
</div>
</body>
<script src="./scripts/createpassword.js"></script>
</html>