forked from HackAtUCI/live
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
487 lines (475 loc) · 19.6 KB
/
index.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
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
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>McHacks V Live</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Hind:300,400,600,700" rel="stylesheet">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/sweetalert.css">
<link type="text/css" rel="stylesheet" href="css/main-snake.css">
<link rel="stylesheet" href="css/style.css">
<!--[if lt IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<div id="mobile-menu-bar" class="hidden-md hidden-lg center">
<div>
<span id="mobile-menu-bar-title">McHacks V LIVE</span>
<i class="fa fa-bars" aria-hidden="true"></i>
</div>
</div>
<div class="modal fade" id="mobile-menu" tabindex="-1" role="dialog">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<span class="modal-title">Menu</span>
</div>
<div class="modal-body">
<a href="https://live.mchacks.ca/index.html">Schedule</a>
<a href="#announcements">Announcements</a>
<a href="#map">Map</a>
<a href="#mentor">Mentor Request</a>
<a href="#api">APIs & Resources</a>
<!--a href="#prizes">Prizes</a-->
<a href="https://hardware.mlh.io/events/mchacks-2018" target="_blank">Hardware</a>
<a href="#faq">FAQs</a>
<a href="https://mchacks2018.devpost.com/" target="_blank">Devpost</a>
</div>
</div>
</div>
</div>
<div class="row">
<div id="sidebar" class="col-md-3">
<div class="overlay">
<img id="sidebar-logo" src="https://hackmcgill.github.io/McHacks-V-Live/images/mchacksLong.png">
<div id="live-header">
<!--div id="live-circle"></div-->
<span id="live-text">LIVE</span>
</div>
<div id="timer-container">
<!--
"countdown 'til hacking begins"
OR
"countdown"
-->
<span id="timer-header">UNTIL END OF HACKING</span>
<div class="timer-digit-container">
<span class="timer-digit-header">DAY</span>
<span class="timer-digit" id="days">0</span>
</div>
<div class="timer-digit-container">
<span class="timer-digit-header">HOUR</span>
<span class="timer-digit" id="hours">0</span>
</div>
<div class="timer-digit-container">
<span class="timer-digit-header">MIN</span>
<span class="timer-digit" id="minutes">0</span>
</div>
<div class="timer-digit-container">
<span class="timer-digit-header">SEC</span>
<span class="timer-digit" id="seconds">0</span>
</div>
</div>
<div id="schedule-feed">
<div id="schedule-background"></div>
</div>
</div>
</div>
<div id="main" class="col-md-9">
<div id="menu-bar" class="hidden-xs hidden-sm">
<div class="menu">
<a href="#announcements" id="announcements-btn"><span>Announcements</span></a>
<a href="#map" id="map-btn"><span>Map</span></a-->
<a href="#mentor" id="mentor-btn"><span>Mentor Request</span></a>
<a href="https://hardware.mlh.io/events/mchacks-2018" target="_blank"><span>Hardware</span></a>
<a href="#api" id="api-btn"><span>APIs & Resources</span></a-->
<!--a href="#prizes" id="prizes-btn"><span>Prizes</span></a-->
<a href="#faq" id="faq-btn"><span>FAQs</span></a>
<a href="https://mchacks2018.devpost.com/" target="_blank">Devpost</a>
</div>
</div>
<div id="content">
<!-- Announcements Tab -->
<div id="announcements">
<img class="loading" src="images/loading-spinning-bubbles.svg" alt="Loading" />
</div>
<!--script>
function base()
{
document.getElementById("image").src="images/basement.png";
}
function main()
{
document.getElementById("image").src="images/main_floor.png";
}
function second()
{
document.getElementById("image").src="images/2nd_floor.png";
}
function third()
{
document.getElementById("image").src="images/3rd_floor.png";
}
</script-->
<!-- Map Tab -->
<div id="map">
<script>
function base()
{
document.getElementById("image").src="images/basement.png";
}
function main()
{
document.getElementById("image").src="images/main_floor.png";
}
function second()
{
document.getElementById("image").src="images/2nd_floor.png";
}
function third()
{
document.getElementById("image").src="images/3rd_floor.png";
}
function sponsors()
{
document.getElementById("image").src="images/sponsors.png";
}
function ceremonies()
{
document.getElementById("image").src="images/ssmu-mcmed.png";
}
</script>
<div class="startup">
<div class="floor_menu" style="text-align: center; font-size:22px">
<a onclick="base()">
<span>Basement</span>
</a>
<a onclick="main()">
<span>Main Floor</span>
</a>
<a onclick="second()">
<span>2nd Floor</span>
</a>
<a onclick="third()">
<span>3rd Floor</span>
</a>
<a onclick="sponsors()">
<span>Sponsors</span>
</a>
<a onclick="ceremonies()">
<span>Ceremonies</span>
</a>
</div>
</div>
<img id="image" src="images/3rd_floor.png" />
</div>
<!-- Mentor Tab -->
<div id="mentor">
<div class="card">
<div class="card-content">
<form class="form-horizontal">
<div class="form-group">
<label for="tableNumber" class="col-md-1 control-label">Table</label>
<div class="col-md-2">
<input type="number" class="form-control" id="tableNumber" min="1" max="68" placeholder="">
</div>
</div>
<div class="form-group">
<label for="tech">What do you need help with?</label><br/>
<label class="radio-inline">
<input type="radio" name="mentorTechOption" id="web" value="web"> Web
</label>
<label class="radio-inline">
<input type="radio" name="mentorTechOption" id="ios" value="ios"> iOS
</label>
<label class="radio-inline">
<input type="radio" name="mentorTechOption" id="android" value="android"> Android
</label>
<label class="radio-inline">
<input type="radio" name="mentorTechOption" id="aws" value="aws"> AWS
</label>
<label class="radio-inline">
<input type="radio" name="mentorTechOption" id="ciscospark" value="ciscospark"> Cisco Spark
</label>
<label class="radio-inline">
<input type="radio" name="mentorTechOption" id="gcp" value="gcp"> GCP
</label>
<label class="radio-inline">
<input type="radio" name="mentorTechOption" id="bigdata" value="bigdata"> Big Data
</label>
<label class="radio-inline">
<input type="radio" name="mentorTechOption" id="others" value="Others"> Others
</label>
</div>
<div class="form-group">
<label for="">Description</label>
<textarea class="form-control" rows="3"></textarea>
</div>
<button type="submit" class="btn btn-default">Submit</button>
</form>
</div>
</div>
</div>
<!-- Prizes Tab -->
<!--div id="prizes">
<section id="prizes-section">
<h1><u>Sponsored Prizes</u><h1>
<div class="col s12 m7">
<h2 class="header">The Achievement Unlocked Prize</h2>
<div class="card">
<h3>PC Battlefront 2 Games, T-Shirts, Socks (4)</h3>
<h4>This Prize is awarded to the most fun and creative game developement hack and is sponsored by EA.</h4>
</div>
<h2 class="header">The Best Design Prize</h2>
<div class="card">
<h3>Sketch Licenses (4)</h3>
<h4>This prize is awarded to the most <i>aesthetic</i> hack sporting nice UI/UX and is sponsored by Sketch.</h4>
</div>
<h2 class="header">The Best Newbie Prize</h2>
<div class="card">
<h3>JetBrains Subscriptions (8)</h3>
<h4>This prize is awarded to the best hack made by a <b>first-time</b> hackathon team and is sponsored by JetBrains.</h4>
</div>
<h2 class="header">The Protect and Serve Prize</h2>
<div class="card">
<h3>1Password Licenses (4)</h3>
<h4>This prize is awarded to the best hack that skaes up an issue in the security space and is sponsored by 1Password.</h4>
</div>
<h2 class="header">The Best Use of AI Prize (3)</h2>
<div class="card">
<h3>Indico API Credit</h3>
<h4>This prize is awarded to the best th and is sponsored by Indico.</h4>
</div>
<h2 class="header">The Full Health Restored Prize</h2>
<div class="card">
<h3>Muse Headbands</h3>
<h4>This prize is awarded to the best hack that can energize the future on health and wellness and is sponsored by Muse.</h4>
</div>
</div>
<div class="col s12 m7">
<h1>Custom Prizes</h1>
<h2 class="header">Deloitte Pitch Contest</h2>
<div class="card">
<h3>Google Home Mini's (4)</h3>
<h4>This prize is awarded to the team with the best pitch and is sponsored and judged by Deloitte.</h4>
</div>
<h2 class="header">Spark API Prize</h2>
<div class="card">
<h3>Cisco Custom Prize</h3>
<h4>This prize is awarded to the team with the best use of Cisco Spark API/SDK and is sponsored and judged by Cisco</h4>
</div>
<h2 class="header">Telus FILL THIS IN Prize</h2>
<div class="card">
<h3>Telus Custom Prize</h3>
<h4>This prize NEEDS A DESCRIPTION and is sponsored and judged by Telus</h4>
</div>
</div>
</section>
</div-->
<!-- API and Resources Tab -->
<div id="api">
<section id="sponsors-section">
<div class="container">
<div class="card-content">
<div class="col-md-12 section-heading text-center to-animate">
<div class="sponsor">
<h2>Select the API or Resource you want more information about</h2>
<div class="bronze">
<a href="https://aws.amazon.com" target="_blank">
<img src="images/sponsors/amazon.png" alt="Image" class="img-responsive">
</a>
<h4>Information about AWS</h4>
</div>
<div class="bronze">
<a href="https://developer.ciscospark.com" target="_blank">
<img src="images/sponsors/ciscospark.png" alt="Image" class="img-responsive">
</a>
<h4> Information about the Cisco Spark API</h4>
</div>
<div class="bronze">
<a href="images/NuanceNIK.pdf" target="_blank">
<img src="images/sponsors/nuance.png" alt="Image" class="img-responsive">
</a>
<h4>Information on Nuance Nina Knowledge (NiK)</h4>
</div>
<div class="bronze">
<a href=" https://cloud.google.com/products/" target="_blank">
<img src="images/sponsors/google.png" alt="Image" class="img-responsive">
</a>
<h4>Information about the Google Cloud Platform</h4>
</div>
<div class="bronze">
<a href="images/dotTech.pdf" target="_blank">
<img src="images/sponsors/dottech.png" alt="Image" class="img-responsive">
</a>
<h4>Information about the .tech domain</h4>
</div>
<div class="bronze">
<a href="https://indico.io/non-commercial" target="_blank">
<img src="images/sponsors/indico.png" alt="Image" class="img-responsive">
</a>
<h4>Information about indico credit </h4>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
<!-- FAQ Tab -->
<div id="faq">
<div class="container">
<div class="panel-group" id="accordion">
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a class="accordion-toggle" data-toggle="collapse" data-parent="#accordion" href="#collapseOne">Are travel reimbursements provided?</a>
</h4>
</div>
<div id="collapseOne" class="panel-collapse collapse in">
<div class="panel-body">
We are unable to provide travel reimbursements for McHacks this year. No exceptions will be granted.
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a class="accordion-toggle collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapseTwo">Who can participate?</a>
</h4>
</div>
<div id="collapseTwo" class="panel-collapse collapse">
<div class="panel-body">
All undergraduate and high school students are welcome! If you are under 18, we’ll need a parental consent form.
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a class="accordion-toggle collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapseThree">What should I bring?</a>
</h4>
</div>
<div id="collapseThree" class="panel-collapse collapse">
<div class="panel-body">
Your student ID, laptop, phone, chargers, some sleeping equipment like pillows and sleeping bags (we’ll be providing air mattresses).
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a class="accordion-toggle collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapseFour">When should I arrive?</a>
</h4>
</div>
<div id="collapseFour" class="panel-collapse collapse">
<div class="panel-body">
Registration will take place at the SSMU building (University Centre, 3480 McTavish St, Montreal, QC H3A 0E7). Out-of-town check-in begins at 9:00 am, and local check-in begins at 9:30 am.
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a class="accordion-toggle collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapseFive">How do I get to McHacks?</a>
</h4>
</div>
<div id="collapseFive" class="panel-collapse collapse">
<div class="panel-body">
We’ll be sending buses to Toronto, Waterloo, and Boston. You can take the Via Rail to Montreal Central Station, a short walk from McGill campus. You can also take the Montreal metro to Peel station, our closest stop.
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a class="accordion-toggle collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapseSix">Is there a standby line on the day of the event?</a>
</h4>
</div>
<div id="collapseSix" class="panel-collapse collapse">
<div class="panel-body">
If we have extra spots available, we will post on our Facebook page in the late morning (around 10:30-11AM). While we wish we could have each and every applicant at McHacks, we were unfortunately unable to book Hilbert’s Infinite Hotel this year.
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a class="accordion-toggle collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapseSeven">I don’t have a team. Can I still participate?</a>
</h4>
</div>
<div id="collapseSeven" class="panel-collapse collapse">
<div class="panel-body">
Of course, it’s not necessary to have a team prior to McHacks! We’ll have a fun team-forming session where you can find an awesome group of people to work with. Teams are welcome to have up to four people.
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a class="accordion-toggle collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapseEight">How much is this going to cost me?</a>
</h4>
</div>
<div id="collapseEight" class="panel-collapse collapse">
<div class="panel-body">
McHacks is completely free! We’ll be providing food, drink, wi-fi, and lots of awesome swag.
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a class="accordion-toggle collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapseNine">Can I keep working on a past project?</a>
</h4>
</div>
<div id="collapseNine" class="panel-collapse collapse">
<div class="panel-body">
No, participants should not be working on their projects before McHacks nor be developing pre-existing projects during the hackathon.
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a class="accordion-toggle collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapseTen">Is parking available?</a>
</h4>
</div>
<div id="collapseTen" class="panel-collapse collapse">
<div class="panel-body">
Parking is available at the McIntyre Garage (3655 Promenade Sir-William-Osler, Montreal, QC H3G 0B1). Rates are a max of $10.00 between 6:00 am and midnight on weekends.
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title">
<a class="accordion-toggle collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapseEleven">What if my question isn’t answered here?</a>
</h4>
</div>
<div id="collapseEleven" class="panel-collapse collapse">
<div class="panel-body">
Contact us fb: <a href="https://www.facebook.com/mcgillhacks/"> McHacks on Facebook</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="https://www.gstatic.com/firebasejs/3.6.4/firebase.js"></script>
<script src="js/jquery-3.1.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/sweetalert.min.js"></script>
<script src="js/moment.js"></script>
<script src="js/schedule.js"></script>
<script type="text/javascript" src="js/snake.js"></script>
<script src="js/script.js"></script>
<script src="js/timer.js"></script>
</body>
</html>