-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherr404_2.html
1148 lines (1021 loc) · 54.1 KB
/
err404_2.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
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<!-- useful meta tags -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no">
<meta name="description" content="An event hosted by MHSSCE to promote the programming culture">
<meta name="keywords" content="hackathon">
<!-- Chrome, Firefox OS and Opera -->
<meta name="theme-color" content="#212121">
<!-- Windows Phone -->
<meta name="msapplication-navbutton-color" content="#212121">
<!-- iOS Safari -->
<meta name="apple-mobile-web-app-status-bar-style" content="#212121">
<!-- title -->
<title>ERR_404 2.0 | Hackathon</title>
<!-- favicon -->
<link rel="icon" type="image/png" href="assets/favicon.png">
<!--Import Google Icon Font-->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!-- Materialize CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.98.2/css/materialize.min.css">
<!-- Custom Stylesheet -->
<link rel="stylesheet" type="text/css" href="css/styles.css">
<!-- Font -->
<link href="https://fonts.googleapis.com/css?family=Josefin+Sans|Oswald" rel="stylesheet">
<!--Slick for slider-->
<link rel="stylesheet" type="text/css" href="slick/slick.css" />
<!-- Add the new slick-theme.css if you want the default styling-->
<link rel="stylesheet" type="text/css" href="slick/slick-theme.css" />
</head>
<body onload="loadProgress()">
<!-- Loader | starts-->
<div id="loader" class="valign-wrapper">
<div class="row">
<div class="col s12">
<center>
<div class="anim"></div>
<div class="progress grey darken-4">
<div class="indeterminate grey lighten-1"></div>
</div>
<p class="grey-text text-darken-2 light-heading flow-text">Loading...</p>
</center>
</div>
</div>
</div>
<!-- Loader | ends -->
<!-- main body | starts -->
<div id="main" class="grey lighten-5">
<!-- Nav bar section -->
<div class="navbar-fixed">
<nav class="grey darken-4 z-depth-0">
<div class="nav-wrapper">
<a href="#" class="brand-logo oswald yellow-accent">ERR_404 2.0</a>
<a href="#" data-activates="mobile-nav" class="button-collapse">
<i class="material-icons">menu</i>
</a>
<ul class="right hide-on-med-and-down">
<li>
<a href="#landing-section" class="waves-effect waves-teal">HOME</a>
</li>
<li>
<a href="#winners-section" class="waves-effect waves-teal">WINNERS</a>
</li>
<li>
<a href="#about-us-section" class="waves-effect waves-teal">ABOUT</a>
</li>
<li>
<a href="#domains-section" class="waves-effect waves-teal">DOMAINS</a>
</li>
<li>
<a href="#sponsors-section" class="waves-effect waves-teal">OUR SPONSORS</a>
</li>
<li>
<a href="#prizes-section" class="waves-effect waves-teal">PRIZES</a>
</li>
<li>
<a href="#rules-section" class="waves-effect waves-teal">RULES</a>
</li>
<li>
<a href="#venue-section" class="waves-effect waves-teal">VENUE</a>
</li>
<li>
<a href="#guidelines-section" class="waves-effect waves-teal">GUIDELINES</a>
</li>
<li>
<a href="#registration-section" class="waves-effect waves-teal">REGISTER</a>
</li>
<li>
<a href="#schedule-section" class="waves-effect waves-teal">SCHEDULE</a>
</li>
<li>
<a href="#faq-section" class="waves-effect waves-teal">FAQ's</a>
</li>
</ul>
</div>
</nav>
</div>
<!-- Side nav -->
<ul class="side-nav" id="mobile-nav">
<li>
<h1 class="side-nav-header oswald yellow-accent center-align">ERR_404 2.0
<br>
<span>
<h4 class="grey-text text-darken-4">HACK NOT FOUND</h4>
</span>
</h1>
</li>
<li>
<a href="#landing-section" class="waves-effect waves-teal">HOME</a>
</li>
<li>
<a href="#winners-section" class="waves-effect waves-teal">WINNERS</a>
</li>
<li>
<a href="#about-us-section" class="waves-effect waves-teal">ABOUT</a>
</li>
<li>
<a href="#domains-section" class="waves-effect waves-teal">DOMAINS</a>
</li>
<li>
<a href="#sponsors-section" class="waves-effect waves-teal">OUR SPONSORS</a>
</li>
<li>
<a href="#prizes-section" class="waves-effect waves-teal">PRIZES</a>
</li>
<li>
<a href="#rules-section" class="waves-effect waves-teal">RULES</a>
</li>
<li>
<a href="#venue-section" class="waves-effect waves-teal">VENUE</a>
</li>
<li>
<a href="#guidelines-section" class="waves-effect waves-teal">GUIDELINES</a>
</li>
<li>
<a href="#registration-section" class="waves-effect waves-teal">REGISTER</a>
</li>
<li>
<a href="#schedule-section" class="waves-effect waves-teal">SCHEDULE</a>
</li>
<li>
<a href="#faq-section" class="waves-effect waves-teal">FAQ's</a>
</li>
</ul>
<!-- landing page section -->
<div id="landing-section" class="container-fluid section valign-wrapper grey lighten-5 scrollspy">
<div class="row container center">
<div class="col s16 m16 l16">
<div class="landing-title"><img src="./assets/dino2_0.gif"></div>
<br>
<!-- <span><h3 id="day">00</h3>
<h3 id="hour">00</h3>
<h3 id="min">00</h3>
<h3 id="sec">00</h3></span> -->
<!-- <h1>
<div id="day"></div>
<div id="hour"></div>
<div id="min"></div>
<div id="sec"></div>
</h1> -->
</div>
+
</div>
</div>
<!-- Winners -->
<div id="winners-section" class="container-fluid section darken-4 scrollspy valign-wrapper">
<div class="row container center">
<!--<div class="col s16 m16 l16">-->
<h2 class="center dark-heading">Winners</h2>
<br>
<br>
<div class="winner-slide">
<div>
<img class="responsive-img" style="max-width : 100%;" src="assets/winners/version_2/1st.jpg">
<div class="caption" style="top: 65%">
<h4 class="dark-heading">1st Prize: CSP22</h4>
<h5 class="dark-heading">M.H. Saboo Siddik College of Engineering</h5>
</div>
</div>
<div>
<img class="responsive-img" style="max-width : 100%;" src="assets/winners/version_2/2nd.jpg">
<div class="caption" style="top: 65%">
<h4 class="dark-heading">2nd Prize: ImagiNation</h4>
<h5 class="dark-heading">Vidyavardhini's College of Engineering and Technology</h5>
</div>
</div>
<div>
<img class="responsive-img" style="max-width : 100%;" src="assets/winners/version_2/3rd.jpg">
<div class="caption" style="top: 65%">
<h4 class="dark-heading">3rd Prize: InoApk.ai</h4>
<h5 class="dark-heading">SIES Graduate School of Technology</h5>
</div>
</div>
<div>
<img class="responsive-img" style="max-width : 100%;" src="assets/winners/version_2/female.jpg">
<div class="caption" style="top: 65%">
<h4 class="dark-heading">Best Female Hackers: House Stack</h4>
<h5 class="dark-heading">Fr. Conceicao Rodrigues College of Engineering, Bandra(W)</h5>
</div>
</div>
<!-- <div>
<img class="responsive-img" style="width : 100%;" src="assets/PostHackathon/IMG (4).jpg">
</div>
<div>
<img class="responsive-img" style="max-width : 100%;" src="assets/PostHackathon/IMG (6).jpg">
</div>
<div>
<img class="responsive-img" style="max-width : 100%;" src="assets/PostHackathon/IMG (7).jpg">
</div>
<div>
<img class="responsive-img" style="max-width : 100%;" src="assets/PostHackathon/IMG (8).jpg">
</div>
<div>
<img class="responsive-img" style="max-width : 100%;" src="assets/PostHackathon/IMG (9).jpg">
</div>
<div>
<img class="responsive-img" style="max-width : 100%;" src="assets/PostHackathon/IMG (10).jpg">
</div>
<div>
<img class="responsive-img" style="max-width : 100%;" src="assets/PostHackathon/IMG (3).jpg">
</div>
<div>
<img class="responsive-img" style="max-width : 100%;" src="assets/PostHackathon/IMG (2).jpg">
</div>
<div>
<img class="responsive-img" style="max-width : 100%;" src="assets/PostHackathon/IMG (1).jpg">
</div> -->
</div>
<!--</div>-->
</div>
</div>
<!-- About -->
<div id="about-us-section" class="container-fluid section grey darken-4 scrollspy valign-wrapper">
<div class="side-gfx"></div>
<div class="container row ">
<div class="col s12">
<h2 class="center light-heading">What is ERR_404 2.0?</h2>
<p class="light-heading flow-text">
ERR_404 2.0 is the second iteration of 24hrs State Level Hackathon organised by Computer
Department of M. H. Saboo Siddik College of Engineering <br> <br>
We call out all the cybernerds to come forth, compile your minds and execute your ideas in a
competitive environment.
<br> The hackathon will run across the weekend which offers students the chance to work in
groups,
brainstorm ideas, and
build a working prototype before the time limit!
<br> Whether it's your first hackathon, or your 50th, we would love to see students of all skill
levels
and from all colleges
come along for a weekend of creativity, collaboration and coding.
<br> Godspeed! </p>
</div>
</div>
</div>
<!-- Domains -->
<!-- //TODO: add aniamtions to the domain icons -->
<div id="domains-section" class="container-fluid section grey lighten-5 scrollspy valign-wrapper">
<div class="container">
<h2 class="center dark-heading">Domains</h2>
<br>
<br>
<div class="row">
<!--Machine Learning-->
<div class="col s12 m6 l4 xl4 center">
<img class="responsive-img domain_icon" src="assets/ml_icon.png">
<h5 class="dark-heading">Machine Learning</h5>
<p class="content-font-size flow-text">Machine learning is a type of artificial intelligence
(AI) that provides computers with the ability to learn without being explicitly programmed.
Machine learning focuses on the development of computer programs that can change when
exposed to new data. </p>
</div>
<!--Computer Vision-->
<div class="col s12 m6 l4 xl4 center">
<img class="responsive-img domain_icon" src="assets/computer_vision.png">
<h5 class="dark-heading">Computer Vision</h5>
<p class="content-font-size flow-text">Computer vision is concerned with the automatic
extraction,
analysis and understanding of useful information from a
single image or a sequence of images. It involves the development of a theoretical and
algorithmic
basis to achieve
automatic visual understanding.</p>
</div>
<!--Block Chain-->
<div class="col s12 m6 l4 xl4 center">
<img class="responsive-img domain_icon" src="assets/block_chain_icon.png">
<h5 class="dark-heading">Block Chain</h5>
<p class="content-font-size flow-text">It’s the technology that underpins digital currencies and
ensures
that all transactions are properly conducted and
recorded. Blockchain technologies make tracking and managing digital identities both secure
and
efficient resulting
in seamless sign-on and reduced fraud.</p>
</div>
<!--Big Data-->
<div class="col s12 m6 l4 xl4 center">
<img class="responsive-img domain_icon" src="assets/big_data_icon.png">
<h5 class="dark-heading">Big Data</h5>
<p class="content-font-size flow-text">Big data analytics is the process of examining large and
varied
data sets -- i.e., big data -- to uncover hidden patterns,
unknown correlations, market trends, customer preferences and other useful information that
can
help
organizations
make more-informed business decisions.</p>
</div>
<!--Networking And Security-->
<div class="col s12 m6 l4 xl4 center">
<img class="responsive-img domain_icon" src="assets/networking_and_security_icon.png">
<h5 class="dark-heading">Networking And Security</h5>
<p class="content-font-size flow-text">Network security is a specialized field in computer
networking
that involves securing a computer network infrastructure.
Explore the world of Networking Security and build an innovative product around it, or find
any
unsolved/unknown bug.
Remember ETERNALBLUE?</p>
</div>
<!--Social Cause-->
<div class="col s12 m6 l4 xl4 center">
<img class="responsive-img domain_icon" src="assets/social_cause_icon.png">
<h5 class="dark-heading">Social Cause</h5>
<p class="content-font-size flow-text">India even after 69 years of independence faces many
socio-economical issues. Many type of problem arises due to natural
& man-made activities. Bring out your creative thinking and build innovative & feasible
solutions
for these problems.</p>
</div>
</div>
<br>
</div>
</div>
<!-- Sponsors -->
<div id="sponsors-section" class="container-fluid section grey darken-4 scrollspy prize-gfx valign-wrapper">
<!-- <div class="side-gfx side-gfx-left"></div> -->
<div class="container">
<h2 class="center light-heading">Our Sponsors</h2>
<div class="sponsors-container">
<div class="row">
<div class="col s12 m4 l4 ">
<a href="https://www.sogosurvey.com/" target="_blank">
<center>
<h4 class="center light-heading">Title Sponsor</h4>
<div class="sponsors-logo-div valign-wrapper">
<img src="./assets/sponsors/sogosurvey_logo.svg"
class="responsive-img sponsors-img">
</div>
<br>
<a class="light-heading flow-text" href="https://www.sogosurvey.com/"
target="_blank">SoGoSurvey</a>
</center>
</a>
</div>
<div class="col s12 m4 l4 ">
<a href="http://www.mobicule.com/" target="_blank">
<center>
<h4 class="center light-heading">Co Sponsor</h4>
<div class="sponsors-logo-div valign-wrapper">
<img src="./assets/sponsors/mobicule.png" class="responsive-img sponsors-img">
</div>
<br>
<a class="light-heading flow-text" href="http://www.mobicule.com/"
target="_blank">Mobicule</a>
</center>
</a>
</div>
<div class="col s12 m4 l4 ">
<a href="https://www.pixtrans.com/" target="_blank">
<center>
<h4 class="center light-heading">Associate</h4>
<div class="sponsors-logo-div valign-wrapper">
<img src="./assets/sponsors/pixlogo.png" class="responsive-img sponsors-img">
</div>
<br>
<a class="light-heading flow-text" href="https://www.pixtrans.com/"
target="_blank">Pix
Transmission</a>
</center>
</a>
</div>
</div>
<div class="row">
<div class="col s12 m4 l4 ">
<a href="https://www.competekaro.com" target="_blank">
<center>
<h4 class="center light-heading">Competition <br> Partner</h4>
<div class="sponsors-logo-div valign-wrapper">
<img src="./assets/sponsors/competekaro.png"
class="responsive-img sponsors-img">
</div>
<br>
<a class="light-heading flow-text" href="https://www.competekaro.com"
target="_blank">CompeteKaro</a>
</center>
</a>
</div>
<div class="col s12 m4 l4 ">
<a href="https://www.ambriona.com/" target="_blank">
<center>
<h4 class="center light-heading">Dessert <br> Partner</h4>
<div class="sponsors-logo-div valign-wrapper">
<img src="./assets/sponsors/ambriona.png" class="responsive-img sponsors-img">
</div>
<br>
<a class="light-heading flow-text" href="https://www.ambriona.com/"
target="_blank">Ambriona</a>
</center>
</a>
</div>
<div class="col s12 m4 l4 ">
<a href="https://www.codingninjas.in/" target="_blank">
<center>
<h4 class="center light-heading">Coding <br> Partner</h4>
<div class="sponsors-logo-div valign-wrapper">
<img src="./assets/sponsors/coding_ninjas.svg"
class="responsive-img sponsors-img">
</div>
<br>
<a class="light-heading flow-text" href="https://www.codingninjas.in/"
target="_blank">Coding Ninjas</a>
</center>
</a>
</div>
</div>
<div class="row">
<div class="col s12 m4 l4 ">
<a href="http://simpliforge.com/" target="_blank">
<center>
<h4 class="center light-heading">3D Printing <br> Partner</h4>
<div class="sponsors-logo-div valign-wrapper">
<img src="./assets/sponsors/Simpliforge Logo.png"
class="responsive-img sponsors-img">
</div>
<br>
<a class="light-heading flow-text" href="http://simpliforge.com/"
target="_blank">Simpliforge</a>
</center>
</a>
</div>
<div class="col s12 m4 l4 ">
<a href="https://www.monsterenergy.com" target="_blank">
<center>
<h4 class="center light-heading">Energy <br> Partner</h4>
<div class="sponsors-logo-div valign-wrapper">
<img src="./assets/sponsors/monster_logo.png" width="50px" height="150px"
class="responsive-img sponsors-img">
</div>
<br>
<a class="light-heading flow-text" href="https://www.monsterenergy.com/"
target="_blank">Monster</a>
</center>
</a>
</div>
<div class="col s12 m4 l4 ">
<a href="http://noescape.in" target="_blank">
<center>
<h4 class="center light-heading">Fun <br> Partner</h4>
<div class="sponsors-logo-div valign-wrapper">
<img src="./assets/sponsors/noescape_burned.png"
class="responsive-img sponsors-img">
</div>
<br>
<a class="light-heading flow-text" href="#" target="_blank">No Escape</a>
</center>
</a>
</div>
</div>
<div class="row">
<h4 class="center light-heading">Knowledge Partners</h4>
<div class="col s12 m4 l4 ">
<a href="https://www.tcs.com/" target="_blank">
<center>
<div class="sponsors-logo-div valign-wrapper">
<img src="./assets/sponsors/tcs.png" class="responsive-img sponsors-img">
</div>
<br>
<a class="light-heading flow-text" href="https://www.tcs.com/"
target="_blank">TCS</a>
</center>
</a>
</div>
<div class="col s12 m4 l4 ">
<a href="https://difference-engine.ai" target="_blank">
<center>
<div class="sponsors-logo-div valign-wrapper">
<img src="./assets/sponsors/difference-engine-logo-crop.png"
class="responsive-img sponsors-img">
</div>
<br>
<a class="light-heading flow-text" href="https://difference-engine.ai/"
target="_blank">Difference Engine</a>
</center>
</a>
</div>
<div class="col s12 m4 l4 ">
<a href="https://www.neebal.com/" target="_blank">
<center>
<div class="sponsors-logo-div valign-wrapper">
<img src="./assets/sponsors/neebal.png" class="responsive-img sponsors-img">
</div>
<br>
<a class="light-heading flow-text" href="https://www.neebal.com/"
target="_blank">Neebal</a>
</center>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Prizes -->
<div id="prizes-section" class="container-fluid section grey lighten-5 scrollspy ">
<div class="container row center">
<h2 class="center dark-heading">Prizes</h2>
<br>
<div class="col s12 m6 l6">
<div class="trophy-container">
<div class="trophy"></div>
<div class="trophy-badge"></div>
</div>
<h4 class='center dark-heading'>Prizes upto ₹30,000 for Top 3 teams</h4>
</div>
<div class="col s12 m6 l6">
<div class="trophy-container">
<div class="trophy"></div>
</div>
<h4 class='center dark-heading'>Special Prize for Female Hackers</h4>
</div>
<h4 class='center light-heading prizes-sub-heading col s12 m12 l12'>Goodies and Honourable Mentions for the
rest
of the hackers :)</h4>
</div>
</div>
<!-- Rules -->
<div id="rules-section" class="container-fluid section grey darken-4 scrollspy valign-wrapper">
<div class="side-gfx"></div>
<div class="container">
<h2 class="center light-heading">Rules and regulations!</h2>
<p class="light-heading center flow-text">
Teams can be anywhere from two to four members. To ensure a level field for all contestants, all code,
design and assets must be created during the duration of the Hackathon. You are, however, free to make
plans, create
wireframes, and brainstorm prior to the event. You are allowed to use 3rd party services, APIs, open
source projects, libraries,
and
frameworks. <br>
There will be no
alcohol, smoking allowed
at the event. Behave professionally. <br> Remember that harassment and racist, sexist, or exclusionary
jokes are
not appropriate
for this event*. Attendees violating these rules may be asked to leave the Hackathon at the sole
discretion
of the Hackathon
organizers. Thank you for helping make this a welcoming, friendly event for all.
</p>
<p class="light-heading flow-text center">View the complete Rules here</p>
<br>
<!--Modal Trigger-->
<div class="row center">
<a href="#modal" class="btn waves-effect waves-teal grey lighten-5 grey-text text-darken-4">Rules</a>
</div>
<div class="">
<!-- Modal Structure -->
<div id="modal" class="modal">
<div class="modal-content">
<h4 class="dark-heading center">Rules</h4>
<p class="time-font content-font-size">*Harassment includes but is not limited to offensive
verbal
or written comments related to gender, age, sexual orientation,
disability, physical appearance, body size, race, religion, deliberate intimidation,
stalking,
following, harassing
photography or recording, sustained disruption of talks or other events, inappropriate
physical
contact.
<br><br> If what you’re doing is making someone feel uncomfortable, that counts as
harassment and is
enough reason to stop
doing it. Be careful and mindful of the words that you choose.
<br><br> Remember that exclusionary comments and hacks can be offensive to those around you.
Participants asked to stop any
harassing behavior are expected to comply immediately.
<br><br> Sponsors, judges, mentors, volunteers, organizers, and anyone else at the event are
also
expected to follow the same.
<br><br> In particular, attendees should not use sexualised images, activities, or other
material
both in their hacks and
during the event. If a participant engages in harassing behavior, organizers may take any
action
they deem appropriate,
including warning the offender or expulsion from the event. If you are being harassed,
notice
that someone else is
being harassed, or have any other concerns, please report about it to the volunteers or the
staffs.
</p>
</div>
<div class="modal-footer">
<a href="#!"
class="time-font modal-action modal-close waves-effect waves-teal btn-flat">Agree</a>
</div>
</div>
</div>
</div>
</div>
<!-- Venue -->
<div id="venue-section" class="container-fluid section grey lighten-5 scrollspy ">
<div class="container">
<h2 class="center dark-heading">Venue</h2>
<br>
<br>
<div class="row center hide-on-med-and-up">
<div class="col s12">
<iframe width="100%" height="450" frameborder="0" style="border:0"
src="https://www.google.com/maps/embed/v1/place?key=AIzaSyCgopPKhSyKKAhIq4hoBkMU0uHQ5UehyMQ&q=M.H.+Saboo+Siddik+College+of+Engineering,+8,+M.h.+Saboo+Siddiq+Polytechnic+Road,+Nagpada,+Mazgaon,+Mumbai,+Maharashtra+400008"
allowfullscreen>
</iframe>
</div>
<div class="col s12 m6 l6">
<h3 class="dark-heading">M.H. Saboo Siddik College of Engineering</h3>
<p class="dark-heading flow-text">8, Saboo Siddik Polytechnic Road, New Nagpada, Byculla, Mumbai,
Maharashtra 400008, India</p>
</div>
</div>
<div class="row center valign-wrapper hide-on-small-only">
<div class="col s12 m6 l6">
<iframe width="100%" height="450" frameborder="0" style="border:0"
src="https://www.google.com/maps/embed/v1/place?key=AIzaSyCgopPKhSyKKAhIq4hoBkMU0uHQ5UehyMQ&q=M.H.+Saboo+Siddik+College+of+Engineering,+8,+M.h.+Saboo+Siddiq+Polytechnic+Road,+Nagpada,+Mazgaon,+Mumbai,+Maharashtra+400008"
allowfullscreen>
</iframe>
</div>
<div class="col s12 m6 l6">
<h3 class="dark-heading">M.H. Saboo Siddik College of Engineering</h3>
<p class="dark-heading flow-text">8, Saboo Siddik Polytechnic Road, New Nagpada, Byculla, Mumbai,
Maharashtra 400008, India</p>
</div>
</div>
</div>
</div>
<!-- Guidelines -->
<div id="guidelines-section" class="container-fluid section grey darken-4 scrollspy valign-wrapper">
<div class="container flow-text light-heading">
<h2 class="center">General Guidelines</h2>
We are hopeful that you all will be very excited about the ERR_404 2.0 Hackathon. To conduct this event
smoothly
&
in a successful
manner. We would like you to follow the below guidelines:
<li>Please be present on time for the onsite registration.</li>
<li>Bring along valid college ID cards. Without it, admission won't be allowed.</li>
<li>Participants are expected to follow the dress code mentioned in the undertaking</li>
<li>The schedule is tentative. It may change a bit,so participants are expected to abide as per the changed
schedule.
</li>
<li>Nobody will be allowed to leave the campus between 9:00PM and 6:00AM.</li>
<li>Vehicles will not be allowed to park in the campus.</li>
<li>It is necessary to get a signed copy of the undertaking. You can find it below.</li>
</p>
<h4>The problem statements will be released one day before the event.</h4>
<br>
<div class="row center time-font">
<a class="btn waves-effect waves-teal white grey-text text-darken-4" href="err_404_undertaking.pdf"
download>ERR_404 2.0 Hackathon Undertaking</a>
</div>
</div>
<div class="side-gfx side-gfx-left"></div>
</div>
<!-- Registration -->
<div id="registration-section" class="container-fluid section grey lighten-5 scrollspy">
<div class="container-fluid row">
<h2 class="center dark-heading">Interested in coming over?</h2>
<!-- <h5 class="center dark-heading">Registrations are now closed</h5> -->
<form class="col l6 m6 s12 offset-l3 offset-m3" id="registration-form">
<div class="row">
<div class="input-field col l12 m12 s12">
<i class="material-icons prefix">group</i>
<input disabled id="team_name" type="text" class="validate">
<label for="team_name">Team Name</label>
</div>
</div>
<div class="row">
<div class="input-field col l12 m12 s12">
<i class="material-icons prefix">phone</i>
<input disabled id="contact" type="tel" pattern="^\d{10}$" class="validate">
<label for="contact" data-error="Please enter a correct phone number">Team Leader
Contact</label>
</div>
</div>
<div class="row">
<div class="input-field col l12 m12 s12">
<i class="material-icons prefix">email</i>
<input disabled id="lead_email" type="email" class="validate">
<label for="lead_email" data-error="Please enter a valid email address">Team Leader Email
ID</label>
</div>
</div>
<div class="row">
<div class="input-field col l6 m6 s12">
<i class="material-icons prefix">account_circle</i>
<input disabled id="lead_name" type="text" class="validate">
<label for="lead_name">Team Leader Name</label>
</div>
<div class="input-field col l6 m6 s12">
<i class="material-icons prefix">device_hub</i>
<input disabled id="lead_github" type="text">
<label for="lead_github" data-error="Please enter a valid email address">Team Leader Github
Id</label>
</div>
</div>
<!-- <div class="row">
<div class="input-field col l12 m12 s12">
<i class="material-icons prefix">account_circle</i>
<input id="member_1_name" type="text" class="validate">
<label for="member_1_name">First Member Name</label>
</div>
</div> -->
<div class="row">
<div class="input-field col l6 m6 s12">
<i class="material-icons prefix">account_circle</i>
<input disabled id="member_1_name" type="text" class="validate">
<label for="member_1_name">First Member Name</label>
</div>
<div class="input-field col l6 m6 s12">
<i class="material-icons prefix">device_hub</i>
<input disabled id="member_1_github" type="text">
<label for="member_1_github" data-error="Please enter a valid email address">First Member Github
Id</label>
</div>
</div>
<!-- <div class="row">
<div class="input-field col l12 m12 s12">
<i class="material-icons prefix">account_circle</i>
<input id="member_2_name" type="text" class="validate">
<label for="member_2_name">Second Member Name</label>
</div>
</div> -->
<div class="row">
<div class="input-field col l6 m6 s12">
<i class="material-icons prefix">account_circle</i>
<input disabled id="member_2_name" type="text">
<label for="member_2_name">Second Member Name</label>
</div>
<div class="input-field col l6 m6 s12">
<i class="material-icons prefix">device_hub</i>
<input disabled id="member_2_github" type="text">
<label for="member_2_github" data-error="Please enter a valid email address">Second Member
Github Id</label>
</div>
</div>
<!-- <div class="row">
<div class="input-field col l12 m12 s12">
<i class="material-icons prefix">account_circle</i>
<input id="member_3_name" type="text" class="validate">
<label for="member_3_name">Third Member Name</label>
</div>
</div> -->
<div class="row">
<div class="input-field col l6 m6 s12">
<i class="material-icons prefix">account_circle</i>
<input disabled id="member_3_name" type="text">
<label for="member_3_name">Third Member Name</label>
</div>
<div class="input-field col l6 m6 s12">
<i class="material-icons prefix">device_hub</i>
<input disabled id="member_3_github" type="text">
<label for="member_3_github" data-error="Please enter a valid email address">Third Member Github
Id</label>
</div>
</div>
<!-- <div class="row">
<div class="input-field col l12 m12 s12">
<i class="material-icons prefix">format_list_numbered</i>
<select class="" id="count">
<option value="0">Choose your option</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
</select>
<label>Team Members Count (including Team Lead)</label>
</div>
</div> -->
<!-- <div class="row">
<div class="input-field col l12 m12 s12">
<i class="material-icons prefix">person_outline</i>
<select class="" id="jain-count">
<option value="0">For special food arrangements</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
</select>
<label>Number of Jain team members (if any)</label>
</div>
</div> -->
<div class="row no-margin-bottom">
<div class="input-field col l12 m12 s12">
<i class="material-icons prefix">school</i>
<input disabled id="college" type="text" class="validate autocomplete">
<label for="college">College</label>
</div>
</div>
<div class="row">
<div class="input-field col l12 m12 s12">
<input disabled type="checkbox" class="filled-in" id="terms-box" />
<label for="terms-box" class="terms-and-conditions">I Accept the
<a href="#rules-section">Rules</a> & have read the
<a href="#guidelines-section">Guidelines</a>
</label>
</div>
</div>
<div class="row center margin">
<div id="submit" class="btn waves-effect waves-teal grey darken-4" onclick="regClosed()">SUBMIT
</div>
</div>
</form>
</div>
</div>
<!-- Schedule -->
<div id="schedule-section" class="container-fluid section grey darken-4 scrollspy valign-wrapper">
<div class="side-gfx"></div>
<div class="container">
<h2 class="center light-heading">Schedule</h2>
<h5 class="light-heading">
Please bear in mind that it’s a hackathon schedule and things never go to plan, so please take the end
time
with a pinch
of salt and allow for a bit of extra time for arrangements during the hackathon ¯\_(ツ)_/⁻</h5>
<br>
<div class="row center">
<a href="timeline.html" class="btn waves-effect waves-teal grey lighten-5 grey-text text-darken-4">Check
out
the Schedule here</a>
</div>
</div>
</div>
<!--FAQ-->
<div class="row grey lighten-5">
<div class="col m1"></div>
<div id="faq-section" class="container-fluid section col m10 s12 scrollspy">
<div class="container row">
<h2 class="center dark-heading">FAQ's</h2>
<br>
<div class="col l1 hide-on-med-and-down"></div>
<ul class="collapsible col l10 s12" data-collapsible="accordion">
<li>
<div class="collapsible-header flow-text">
<span class="cross-box">
<span class="rotating-span"></span>
<span class="horizontal-span"></span>
</span> Who can participate?
</div>
<div class="collapsible-body">
<span class="flow-text">Anyone with a knack of programming and solving problems can
participate.</span>
</div>
</li>
<li>
<div class="collapsible-header flow-text">
<span class="cross-box">
<span class="rotating-span"></span>
<span class="horizontal-span"></span>
</span> How much does it cost?
</div>
<div class="collapsible-body">
<span class="flow-text">Thanks to our college, attendance is completely free. We will also
provide you with WiFi, dinner and a workspace.</span>
</div>
</li>
<li>
<div class="collapsible-header flow-text">
<span class="cross-box">
<span class="rotating-span"></span>
<span class="horizontal-span"></span>
</span> What should I bring?
</div>
<div class="collapsible-body">
<span class="flow-text">Bring your laptop, charger and other gadgets suitable to your