-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapplication.html
More file actions
293 lines (284 loc) · 14.9 KB
/
Copy pathapplication.html
File metadata and controls
293 lines (284 loc) · 14.9 KB
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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<!-- Mobile Specific Metas
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<!-- FONT
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link href="//fonts.googleapis.com/css?family=Source+Sans+Pro:200,400,600,700,900|Lato:300,400" rel="stylesheet"
type="text/css">
<!-- CSS
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/application.css">
<!-- Script
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<script defer src="https://use.fontawesome.com/releases/v5.0.11/js/all.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="./js/application.js"></script>
<script src="anime.min.js"></script>
<script src="main.js"></script>
<title>Citizen Hacks</title>
</head>
<body>
<ul id="menu">
<a href="#contact" class="panel-button">
<li>Contact Information</li>
</a>
<a href="#personal" class="panel-button">
<li>Personal Details</li>
</a>
<a href="#additional" class="panel-button">
<li>Additional Information</li>
</a>
<a href="#team" class="panel-button">
<li>Team</li>
</a>
<a href="#submit" class="panel-button">
<li>Submit</li>
</a>
</ul>
<div class="body">
<div class="bg-cover" class="reveal"></div>
<div class="panel">
<header id="header">
<div class="header-container">
<div class="horizontal">
<div class="header-title web application-header-title">
<a href="index.html">
<img class="header-logo" src="assets/small.svg" alt="Citizen Hacks">
</a>
</div>
<div>
<a class="hamburger-shell">
<div class="hamb top"></div>
<div class="hamb middle"></div>
<div class="hamb bottom"></div>
</a>
</div>
<div>
<div class="mobile">
<a class="link" href="index.html">Home</a>
</div>
</div>
</div>
<div class="horizontal links">
<div>
<a class="link" id="about-button"></a>
</div>
<div>
<a class="link" id="faq-button"></a>
</div>
<div>
<a class="link" href="index.html"></a>
</div>
<div>
<a class="link" href="index.html">Home</a>
</div>
</div>
</div>
</header>
<div class="application-container">
<div class="application center">
<div class="mobile bumper"></div>
<h1>Citizen Hacks Application</h1>
<p>Please fill out the information below</p>
<div class="pink-line" id="contact"></div>
<form id="application">
<h2>Contact information</h2>
<p>We will use your email for future communication</p>
<div class="item-required">
<input name="firstName" id="firstName" placeholder="First name">
</div>
<div class="item-required">
<input name="lastName" id="lastName" placeholder="Last name">
</div>
<div class="item-required">
<input type="email" name="email" id="email" placeholder="Email">
</div>
<div class="item-required">
<input name="phone" id="phone" placeholder="Phone number (only numbers)" style="border: solid 1px #222222;">
</div>
<div class="blue-line line" id="personal"></div>
<h2>Personal details</h2>
<div class="item-required">
<input name="age" id="age" placeholder="What is your age?">
</div>
<div class="item-required">
<label>
<select onchange="genderSelect(this)" name="gender">
<option value="" disabled selected>What is your gender?</option>
<option value="Male">Male</option>
<option value="Female">Female</option>
<option value="None">Prefer not to specify</option>
<option value="Other">Other</option>
</select>
</label>
</div>
<div>
<input placeholder="Please specify your gender" type="text" name="otherGender" style="display: none; height: 51px; margin-bottom: -5px;" />
</div>
<div class="item-required">
<label>
<select onchange="studySelect(this)" name="studyLevel">
<option value="" disabled selected>Current level of study?</option>
<option value="HighSchool">High school</option>
<option value="Undergraduate">Undergraduate</option>
<option value="Graduate">Graduate</option>
<option value="Other">Other</option>
</select>
</label>
</div>
<div id = "otherStudyDiv">
<input id = "otherStudy" placeholder="Please specify your level of study*" type="text" name="otherStudy" style="display: none; height: 51px;" />
</div>
<div class="item-required">
<input name="school" id="school" placeholder="School">
</div>
<div>
<input name="program" id="program" placeholder="Program/Major (Optional)">
</div>
<div>
<label>
<select style="border: solid 1px #222222;" name="hackathons">
<option value="" disabled selected>How many hackathons have you attended? (Optional)</option>
<option value="0">0</option>
<option value="1-3">1-3</option>
<option value="4-7">4-7</option>
<option value="8+">8+</option>
</select>
</label>
</div>
<div class="yellow-line line"></div>
<h2>Tell us about yourself</h2>
<p>We want to learn more about you :)</p>
<p>(max 600 characters)</p>
<div class="item-required">
<textarea name="passions" id="passions" cols="40" rows="4" maxlength="600"></textarea>
</div>
<div class="pink-line line"></div>
<h2>Describe a past project</h2>
<p>Tell us what it was and what you did!</p>
<p>(max 600 characters)</p>
<div class="item-required">
<textarea name="pastProject" id="pastProject" cols="40" rows="4" maxlength="600"></textarea>
</div>
<div class="blue-line line"></div>
<h2>What do you think Digital Citizenship means?</h2>
<p>It's called 'Citizen' Hacks for a reason ;)</p>
<p>(max 600 characters)</p>
<div class = "item-required">
<textarea name="citizenship" id="citizenship" cols="40" rows="4" maxlength="600"></textarea>
</div>
<div class="yellow-line line" id="additional"></div>
<h2>Additional Info (Optional)</h2>
<p>Show us some of your projects!</p>
<div>
<input type="text" name="website" id="website" placeholder="Personal Website (Optional)"/>
</div>
<div>
<input type="text" name="github" id="github" placeholder="Github (Optional)"/>
</div>
<div>
<input type="text" name="linkedin" id="linkedin" placeholder="LinkedIn (Optional)"/>
</div>
<div>
<input type="text" name="devpost" id="devpost" placeholder="Devpost (Optional)"
style="border: solid 1px #222222;"/>
</div>
<div class="pink-line line"></div>
<h2>Dietary Restrictions</h2>
<p>We will try and cater our meals towards certain diets. Specify "None"
if you have no dietary restrictions.</p>
<div class="item-required">
<textarea name="dietaryRestrictions" id="dietaryRestrictions" cols="40" rows="5"
maxlength="600"></textarea>
</div>
<div class="blue-line line" id="team"></div>
<h2>Team (Optional)</h2>
<p>If you are applying with a team, please list your teammate's emails.
Make sure only one member in each team submits this list.
Each team can consist of up to four team members</p>
<div>
<div>
<input type="text" name="member1" id="member1" placeholder="[1] Member's email"/>
</div>
<div>
<input type="text" name="member2" id="member2" placeholder="[2] Member's email"/>
</div>
<div>
<input type="text" name="member3" id="member3" placeholder="[3] Member's email"
style="border: solid 1px #222222;"/>
</div>
</div>
<div class="yellow-line line" id="submit"></div>
<div class="item-required">
<label>
<select name="hearFrom" onchange="hearSelect(this)" style="border: solid 1px #222222;">
<option value="" disabled selected>Where did you hear about us from?</option>
<option value="word-of-mouth">Word of mouth</option>
<option value="facebook">Facebook</option>
<option value="twitter">Twitter</option>
<option value="school">School</option>
<option value="Other">Other</option>
</select>
</label>
</div>
<div>
<input placeholder="Please specify you heard us from" type="text" name="otherHear" style="display: none; height: 51px; margin-bottom: -5px; border: solid 1px #222222; border-top: none;" />
</div>
<label class="check-container">I agree to receive follow up emails and newsletter from Citizen Hacks
<input type="checkbox" name="newsletter" value="true">
<span class="checkmark"></span>
</label>
<label class="check-container">I have read and agreed to the Privacy Policy of Citizen Hacks <a href="https://citizenhacks.com/privacy-policy.pdf" target="_blank">here</a>
<input type="checkbox" id="privacyPolicy" name="privacyPolicy" value="true">
<span class="checkmark"></span>
</label>
<label class="check-container">I have read and agreed to the MLH Code of Conduct <a href="https://static.mlh.io/docs/mlh-code-of-conduct.pdf" target="_blank">here</a>
<input type="checkbox" id="mlhConduct" name="mlhConduct" value="true">
<span class="checkmark"></span>
</label>
<label class="check-container">I confirm that all my responses on this application are true
<input type="checkbox" id="responseTrue" name="responseTrue" value="true">
<span class="checkmark"></span>
</label>
<div>
<a class="submit" href="#" onclick="formcheck(); return false">Submit</a>
</div>
</form>
</div>
</div>
<footer>
<div class="footer-container">
<div class="horizontal">
<div class="header-title">
<img class="header-logo" src="assets/small.svg" alt="Citizen Hacks">
</div>
</div>
<div class="horizontal right">
<div class="icon-container">
<a class="icon" href="https://www.facebook.com/citizenhacks">
<i class="fab fa-facebook-f"></i>
</a>
</div>
<div class="icon-container">
<a class="icon" href="https://www.twitter.com/CitizenHacks">
<i class="fab fa-twitter"></i>
</a>
</div>
<div class="icon-container">
<a class="icon" rel="me" href="https://mastodon.social/@citizenhacks">
<i class="fab fa-mastodon"></i>
</a>
</div>
</div>
</div>
</footer>
</div>
</div>
</body>
</html>