-
Notifications
You must be signed in to change notification settings - Fork 1
/
login.html
167 lines (162 loc) · 4.32 KB
/
login.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<!-- @format -->
<!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>
<link rel="stylesheet" href="./styles/login.css" />
<title>SurveyMonkey - Log in</title>
<link
rel="icon"
href="./images/download-modified.png"
type="image/x-icon"
/>
<script
src="https://kit.fontawesome.com/fb700f3d70.js"
crossorigin="anonymous"
></script>
</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>Don’t have an account? <a href="signup.html"> Sign up</a></p>
</div>
<h1>Log in</h1>
<div class="label">
<label
><span
>Email address <b class="colorgreen"> NEW!</b>
</span>
<div class="icon"><i class="fa-solid fa-circle-info"></i><div class="infotext">
<h3>New! Log in with email address</h3>
<p>
Welcome to our simplified log in
process. We now ask you to log in with email address instead of
username.
</p>
<p>
If you have more than one account: Enter your email,
then we’ll ask you to link your accounts. You can switch between
accounts after you log in. <a href="#"> Learn more</a>
</p>
</div></div>
</label>
</div>
<div class="input-email">
<input
onkeypress="submitOnEnter(event)"
oninput="enableButton()"
id="email"
type="email"
aria-required="true"
aria-label="Email address"
/>
</div>
<div class="forgotmail">
<a href="#">Forgot email?</a>
</div>
<button
onclick="login()"
id="submitButton"
class="button-disabled"
type="submit"
disabled="true"
>
Next
</button>
<hr />
<div class="sso">
<p>Or log in with</p>
<button class="btnsso">
<a href="#">
<img
style="width: 10px; height: 10px"
src="https://th.bing.com/th/id/OIP.BXw4zyZ3HYSQ9c8VvfxOLAHaH9?pid=ImgDet&w=197&h=211&c=7"
alt=""
/>
SSO
</a>
</button>
</div>
<div class="social">
<div>
<div class="socialimage">
<a href="#">
<img
src="https://th.bing.com/th/id/OIP.PWoq1WvDQDxc_MPv4Jt0GwHaHa?w=176&h=180&c=7&r=0&o=5&pid=1.7"
alt="microsoft"
/>
</a>
</div>
<p>Microsoft</p>
</div>
<div>
<div class="socialimage">
<a href="#">
<img
src="https://th.bing.com/th/id/OIP.vVJkAYju2DZ-VbESvjmffAHaHw?w=167&h=180&c=7&r=0&o=5&pid=1.7"
alt="fb"
/>
</a>
</div>
<p>Facebook</p>
</div>
<div>
<div class="socialimage">
<a href="#">
<img
src="https://th.bing.com/th/id/OIP.qMjKXwPvmJhHw5cmsJrTNgHaHa?w=180&h=180&c=7&r=0&o=5&pid=1.7"
alt="linkedin"
/>
</a>
</div>
<p>LinkedIn</p>
</div>
<div>
<div class="socialimage">
<a href="#">
<img
src="https://th.bing.com/th/id/OIP.a3qIAzN8GxXSp9Y_B0lULAHaHa?w=169&h=180&c=7&r=0&o=5&pid=1.7"
alt="google"
/>
</a>
</div>
<p>Google</p>
</div>
<div>
<div class="socialimage">
<a href="#">
<img
src="https://th.bing.com/th/id/OIP.sWSPghjzvfUYfQpqXbo37wHaIo?w=152&h=180&c=7&r=0&o=5&pid=1.7"
alt="apple"
/>
</a>
</div>
<p>Apple</p>
</div>
</div>
</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/login.js"></script>
</html>