-
Notifications
You must be signed in to change notification settings - Fork 1
/
signup.html
149 lines (147 loc) · 4.39 KB
/
signup.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
<!-- @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/signup.css" />
<title>SurveyMonkey - Sign Up</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>
<did 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>Already have an account? <a href="login.html">Log In</a></p>
</div>
<h1>Create an account</h1>
<label> Email address </label>
<div class="input-email">
<input
oninput="enableButton()"
id="email"
type="email"
aria-required="true"
aria-label="Email address"
required
/>
</div>
<div class="checkbox">
<div>
<input
onclick="enableButton()"
onkeypress="submitOnEnter(event)"
type="checkbox"
id="terms"
/><span
>You agree to the <a href="#">Terms of Use </a>and
<a href="#">Privacy Notice.</a></span
>
</div>
<div>
<input type="checkbox" id="agree" /><span
>You agree to receive product news and special promotions via
email. You can opt-out of these emails in your My Account page
anytime.</span
>
</div>
</div>
<button
onkeypress="submitOnEnter(event)"
onclick="saveData()"
class="button-disabled"
id="submitButton"
type="submit"
disabled="true"
id="next"
>
Next
</button>
<hr />
<div>
<p>Or sign up with</p>
</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>
</did>
<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/signup.js"></script>
</html>