forked from OWASP-STUDENT-CHAPTER/Hack-Owasp5.0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1353 lines (1283 loc) · 79.9 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
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>
<script type="text/javascript" src="./assets/bundle-playback.js.download" charset="utf-8"></script>
<script type="text/javascript" src="./assets/wombat.js.download" charset="utf-8"></script>
<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">
<link rel="icon" type="image/x-icon" href="/assets/logo.png">
<title>HackOWASP 5.0 | April 14-16 | TIET </title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- [if lt IE 9]><script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js" type="text/javascript"></script><![endif] -->
<link rel="stylesheet" href="./assets/normalize.css">
<link rel="stylesheet" href="./assets/style.css">
<link rel="stylesheet" href="./assets/judges.css">
<link rel="stylesheet" href="./assets/prizes.css">
</head>
<body>
<section id="hero" class="hero">
<img src="https://res.cloudinary.com/owasptiet/image/upload/v1681060363/Hackowasp5.0/Backgrounds/cloud-1_v28hst.png" class="cloud cloud-1">
<img src="./assets/cloud-2.png" class="cloud cloud-2">
<img src="./assets/cloud-3.png" class="cloud cloud-3">
<img src="./assets/cloud-4.png" class="cloud cloud-4">
<img src="./assets/cloud-5.png" class="cloud cloud-5">
<!-- burger start -->
<div class="burger">
<div id="menuToggle">
<!--
A fake / hidden checkbox used as click reciever,
to use :checked selector on it.
-->
<input type="checkbox" />
<!-- burger lines start -->
<span></span>
<span></span>
<span></span>
<!-- burger lines end -->
<ul id="menu">
<li>
<a href="#about">
About
</a>
</li>
<li>
<a href=#tracks>
Tracks
</a>
</li>
<li>
<a href=#prizes>
Prizes
</a>
</li>
<li>
<a href='#partners'>
Sponsors
</a>
</li>
<li>
<a href=#faq>
FAQ
</a>
</li>
<li>
<a href=#contact-us>
Contact Us
</a>
</li>
</ul>
</div>
</div>
<!-- burger end -->
<nav>
<ul>
<li>
<a href="#about">
About
</a>
</li>
<li>
<a href=#tracks>
Tracks
</a>
</li>
<li>
<a href=#prizes>
Prizes
</a>
</li>
<li>
<a href='#partners'>
Sponsors
</a>
</li>
<li>
<a href=#faq>
FAQ
</a>
</li>
<li>
<a href=#contact-us>
Contact Us
</a>
</li>
</ul>
</nav>
<div class="hero-inside">
<div class="logo">
<img loading="eager" src="./assets/logo.png" alt="HackOwasp 5.0">
</div>
<div class="containerLanding">
<p class="typewriter"> 14-16 April <a style="color: #DE6843;">|</a>
<span data-text="Save The Dates, Innovate To Sustain, Code To Maintain"></span>
</p>
</div>
<div class="apply-button" data-hackathon-slug="hackowasp5" data-button-theme="light"
style="height: 44px; width: 312px;padding-bottom: 10px;"></div>
<div>
<a href="https://forms.gle/uNMdhiEK4hYamjpC7" target="_blank" class="btn btn-white" style="opacity: rgba(39,79,176,0.8);margin-top: 20px;">
Mentor Application
</a>
</div>
<!-- <div class="discordButton">
<div id="discordBtn" class="chatbutton" style="width: 50px;">
<a href="https://discord.gg/jpAppcurpX" style="text-decoration: none; color: white; padding-left: 3px;" target="_blank"> <i class="fab fa-discord fa-beat-fade" style="color: #5865f2;"></i><span class="mobile-chat" style="position: relative; margin-left: 10px;"></span></a>
</div>
</div> -->
<div class="discordbtn">
<a href="https://discord.gg/jpAppcurpX">
<svg style="color: #5865f2" xmlns="http://www.w3.org/2000/svg" width="35" height="35" fill="#5865f2"
class="bi bi-discord" viewBox="0 0 16 16">
<path
d="M13.545 2.907a13.227 13.227 0 0 0-3.257-1.011.05.05 0 0 0-.052.025c-.141.25-.297.577-.406.833a12.19 12.19 0 0 0-3.658 0 8.258 8.258 0 0 0-.412-.833.051.051 0 0 0-.052-.025c-1.125.194-2.22.534-3.257 1.011a.041.041 0 0 0-.021.018C.356 6.024-.213 9.047.066 12.032c.001.014.01.028.021.037a13.276 13.276 0 0 0 3.995 2.02.05.05 0 0 0 .056-.019c.308-.42.582-.863.818-1.329a.05.05 0 0 0-.01-.059.051.051 0 0 0-.018-.011 8.875 8.875 0 0 1-1.248-.595.05.05 0 0 1-.02-.066.051.051 0 0 1 .015-.019c.084-.063.168-.129.248-.195a.05.05 0 0 1 .051-.007c2.619 1.196 5.454 1.196 8.041 0a.052.052 0 0 1 .053.007c.08.066.164.132.248.195a.051.051 0 0 1-.004.085 8.254 8.254 0 0 1-1.249.594.05.05 0 0 0-.03.03.052.052 0 0 0 .003.041c.24.465.515.909.817 1.329a.05.05 0 0 0 .056.019 13.235 13.235 0 0 0 4.001-2.02.049.049 0 0 0 .021-.037c.334-3.451-.559-6.449-2.366-9.106a.034.034 0 0 0-.02-.019Zm-8.198 7.307c-.789 0-1.438-.724-1.438-1.612 0-.889.637-1.613 1.438-1.613.807 0 1.45.73 1.438 1.613 0 .888-.637 1.612-1.438 1.612Zm5.316 0c-.788 0-1.438-.724-1.438-1.612 0-.889.637-1.613 1.438-1.613.807 0 1.451.73 1.438 1.613 0 .888-.631 1.612-1.438 1.612Z"
fill="white"></path>
</svg> </a>
</div>
</div>
<!-- social tray start -->
<!-- <div class="tray-container">
<div class="social-container">
<div class="social-drop">
<ul class="tray-icon">
<a style="text-decoration: none;" target="_blank" href="https://www.instagram.com/owasp_tiet/">
<li> <svg xmlns="http://www.w3.org/2000/svg" width="30" height="35" fill="currentColor" class="bi bi-instagram" viewBox="0 0 16 16">
<path d="M8 0C5.829 0 5.556.01 4.703.048 3.85.088 3.269.222 2.76.42a3.917 3.917 0 0 0-1.417.923A3.927 3.927 0 0 0 .42 2.76C.222 3.268.087 3.85.048 4.7.01 5.555 0 5.827 0 8.001c0 2.172.01 2.444.048 3.297.04.852.174 1.433.372 1.942.205.526.478.972.923 1.417.444.445.89.719 1.416.923.51.198 1.09.333 1.942.372C5.555 15.99 5.827 16 8 16s2.444-.01 3.298-.048c.851-.04 1.434-.174 1.943-.372a3.916 3.916 0 0 0 1.416-.923c.445-.445.718-.891.923-1.417.197-.509.332-1.09.372-1.942C15.99 10.445 16 10.173 16 8s-.01-2.445-.048-3.299c-.04-.851-.175-1.433-.372-1.941a3.926 3.926 0 0 0-.923-1.417A3.911 3.911 0 0 0 13.24.42c-.51-.198-1.092-.333-1.943-.372C10.443.01 10.172 0 7.998 0h.003zm-.717 1.442h.718c2.136 0 2.389.007 3.232.046.78.035 1.204.166 1.486.275.373.145.64.319.92.599.28.28.453.546.598.92.11.281.24.705.275 1.485.039.843.047 1.096.047 3.231s-.008 2.389-.047 3.232c-.035.78-.166 1.203-.275 1.485a2.47 2.47 0 0 1-.599.919c-.28.28-.546.453-.92.598-.28.11-.704.24-1.485.276-.843.038-1.096.047-3.232.047s-2.39-.009-3.233-.047c-.78-.036-1.203-.166-1.485-.276a2.478 2.478 0 0 1-.92-.598 2.48 2.48 0 0 1-.6-.92c-.109-.281-.24-.705-.275-1.485-.038-.843-.046-1.096-.046-3.233 0-2.136.008-2.388.046-3.231.036-.78.166-1.204.276-1.486.145-.373.319-.64.599-.92.28-.28.546-.453.92-.598.282-.11.705-.24 1.485-.276.738-.034 1.024-.044 2.515-.045v.002zm4.988 1.328a.96.96 0 1 0 0 1.92.96.96 0 0 0 0-1.92zm-4.27 1.122a4.109 4.109 0 1 0 0 8.217 4.109 4.109 0 0 0 0-8.217zm0 1.441a2.667 2.667 0 1 1 0 5.334 2.667 2.667 0 0 1 0-5.334z"/>
</svg></li>
</a>
<a style="text-decoration: none;" target="_blank" href="https://www.linkedin.com/company/owasp-tiet/">
<li class="fab fa-linkedin"><svg
xmlns="http://www.w3.org/2000/svg" width="30" height="35" class="bi bi-linkedin"
viewBox="0 0 16 16">
<path
d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854V1.146zm4.943 12.248V6.169H2.542v7.225h2.401zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248-.822 0-1.359.54-1.359 1.248 0 .694.521 1.248 1.327 1.248h.016zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016a5.54 5.54 0 0 1 .016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225h2.4z" fill="currentColor" />
</svg></li>
</a>
<a style="text-decoration: none;" target="_blank" href="https://github.com/OWASP-STUDENT-CHAPTER">
<li><svg xmlns="http://www.w3.org/2000/svg" width="30" height="35" fill="currentColor" class="bi bi-github" viewBox="0 0 16 16">
<path d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.012 8.012 0 0 0 16 8c0-4.42-3.58-8-8-8z"/>
</svg></li>
</a>
<a style="text-decoration: none;" target="_blank" href="https://twitter.com/Owasp_tiet">
<li><svg xmlns="http://www.w3.org/2000/svg" width="30" height="35" fill="currentColor" class="bi bi-twitter" viewBox="0 0 16 16">
<path d="M5.026 15c6.038 0 9.341-5.003 9.341-9.334 0-.14 0-.282-.006-.422A6.685 6.685 0 0 0 16 3.542a6.658 6.658 0 0 1-1.889.518 3.301 3.301 0 0 0 1.447-1.817 6.533 6.533 0 0 1-2.087.793A3.286 3.286 0 0 0 7.875 6.03a9.325 9.325 0 0 1-6.767-3.429 3.289 3.289 0 0 0 1.018 4.382A3.323 3.323 0 0 1 .64 6.575v.045a3.288 3.288 0 0 0 2.632 3.218 3.203 3.203 0 0 1-.865.115 3.23 3.23 0 0 1-.614-.057 3.283 3.283 0 0 0 3.067 2.277A6.588 6.588 0 0 1 .78 13.58a6.32 6.32 0 0 1-.78-.045A9.344 9.344 0 0 0 5.026 15z"/>
</svg></li>
</a>
<a style="text-decoration: none;" target="_blank" href="https://bit.ly/Owasp_Community">
<a style="text-decoration: none;" target="_blank" href="https://discord.gg/jpAppcurpX">
<li><svg xmlns="http://www.w3.org/2000/svg" width="30" height="35" fill="currentColor"
class="bi bi-discord" viewBox="0 0 16 16">
<path
d="M13.545 2.907a13.227 13.227 0 0 0-3.257-1.011.05.05 0 0 0-.052.025c-.141.25-.297.577-.406.833a12.19 12.19 0 0 0-3.658 0 8.258 8.258 0 0 0-.412-.833.051.051 0 0 0-.052-.025c-1.125.194-2.22.534-3.257 1.011a.041.041 0 0 0-.021.018C.356 6.024-.213 9.047.066 12.032c.001.014.01.028.021.037a13.276 13.276 0 0 0 3.995 2.02.05.05 0 0 0 .056-.019c.308-.42.582-.863.818-1.329a.05.05 0 0 0-.01-.059.051.051 0 0 0-.018-.011 8.875 8.875 0 0 1-1.248-.595.05.05 0 0 1-.02-.066.051.051 0 0 1 .015-.019c.084-.063.168-.129.248-.195a.05.05 0 0 1 .051-.007c2.619 1.196 5.454 1.196 8.041 0a.052.052 0 0 1 .053.007c.08.066.164.132.248.195a.051.051 0 0 1-.004.085 8.254 8.254 0 0 1-1.249.594.05.05 0 0 0-.03.03.052.052 0 0 0 .003.041c.24.465.515.909.817 1.329a.05.05 0 0 0 .056.019 13.235 13.235 0 0 0 4.001-2.02.049.049 0 0 0 .021-.037c.334-3.451-.559-6.449-2.366-9.106a.034.034 0 0 0-.02-.019Zm-8.198 7.307c-.789 0-1.438-.724-1.438-1.612 0-.889.637-1.613 1.438-1.613.807 0 1.45.73 1.438 1.613 0 .888-.637 1.612-1.438 1.612Zm5.316 0c-.788 0-1.438-.724-1.438-1.612 0-.889.637-1.613 1.438-1.613.807 0 1.451.73 1.438 1.613 0 .888-.631 1.612-1.438 1.612Z"
fill="currentColor"></path>
</svg></li>
</a>
</ul>
</div>
</div>
</div> -->
<!-- social tray ends -->
</section>
<section class="about">
<img src="./assets/about-fish.png" class="about-fish">
<div class="about-jellyfish">
<img src="./assets/about-jellyfish.png">
</div>
<div class="beams">
<img loading="eager" src="./assets/beam-1.png" class="beam beam-1" data-paroller-factor="-0.05"
data-paroller-factor-xs="0.0" data-paroller-type="foreground" data-paroller-direction="horizontal"
style="transform: translate(0px, 0px); transition: transform 0.1s ease 0s; will-change: transform;">
<img loading="eager" src="./assets/beam-2.png" class="beam beam-2" data-paroller-factor="-0.08"
data-paroller-factor-xs="0.0" data-paroller-type="foreground" data-paroller-direction="horizontal"
style="transform: translate(0px, 0px); transition: transform 0.1s ease 0s; will-change: transform;">
<img loading="eager" src="./assets/beam-3.png" class="beam beam-3" data-paroller-factor="-0.05"
data-paroller-factor-xs="0.0" data-paroller-type="foreground" data-paroller-direction="horizontal"
style="transform: translate(0px, 0px); transition: transform 0.1s ease 0s; will-change: transform;">
<img loading="eager" src="./assets/beam-4.png" class="beam beam-4" data-paroller-factor="-0.08"
data-paroller-factor-xs="0.0" data-paroller-type="foreground" data-paroller-direction="horizontal"
style="transform: translate(0px, 0px); transition: transform 0.1s ease 0s; will-change: transform;">
<img loading="eager" src="./assets/beam-5.png" class="beam beam-5" data-paroller-factor="-0.05"
data-paroller-factor-xs="0.0" data-paroller-type="foreground" data-paroller-direction="horizontal"
style="transform: translate(0px, 0px); transition: transform 0.1s ease 0s; will-change: transform;">
<img loading="eager" src="./assets/beam-6.png" class="beam beam-6" data-paroller-factor="-0.08"
data-paroller-factor-xs="0.0" data-paroller-type="foreground" data-paroller-direction="horizontal"
style="transform: translate(0px, 0px); transition: transform 0.1s ease 0s; will-change: transform;">
<img loading="eager" src="./assets/beam-7.png" class="beam beam-7" data-paroller-factor="-0.05"
data-paroller-factor-xs="0.0" data-paroller-type="foreground" data-paroller-direction="horizontal"
style="transform: translate(0px, 0px); transition: transform 0.1s ease 0s; will-change: transform;">
<div class="diver diver-1" data-paroller-factor="-0.15" data-paroller-factor-xs="0.0"
data-paroller-type="foreground" data-paroller-direction="vertical"
style="transform: translate(0px, 0px); transition: transform 0.1s ease 0s; will-change: transform;">
<img loading="lazy" src="./assets/diver-1.png">
</div>
<div class="diver diver-2" data-paroller-factor="-0.175" data-paroller-factor-xs="0.0"
data-paroller-type="foreground" data-paroller-direction="vertical"
style="transform: translate(0px, 0px); transition: transform 0.1s ease 0s; will-change: transform;">
<img loading="lazy" src="./assets/diver-2.png">
</div>
</div>
<div class="about-inside">
<div class="about-inside-left">
<h2 id="about" class="green">About HackOWASP</h2>
<div class="about_section">
<h3>Innovate to sustain, code to maintain</h3>
<p>HackOWASP is an annual national hackathon organized by the members of the OWASP Student Chapter,
Thapar
Institute of Engineering and Technology, Patiala.
Continuing the legacy forward, the fifth edition of the event, HackOWASP gives a chance to
all the ingenious developers to subsume creativity with ambition and give rise to innovation in the
burgeoning world of technology.
HackOWASP stands at a national level on the global scale and strives to motivate students to go
beyond the possible.</p>
</div>
<h4>About OWASP</h4>
<div class="about_section_1">
<p>Thapar Institute of Engineering and Technology (TIET) has been a steady source of highly skilled
talent to the nation as well as overseas. A pioneer in engineering education, research and innovation. The
team of
OWASP Student Chapter, one of the gilt-edged coding society, involves ingenious mind solvers who
are eager
to make the world a better place to live in with their innovative techniques and discoveries. By
successfully organizing many hackathons, tech-talks, workshops and coding nights, we have always
strived hard to maintain the coding culture throughout the campus.
</p>
</div>
<!-- Add tracks here -->
<div class="section" id="tracks">
<h2 id="tracks" class="orange">Tracks</h2>
<div id="tracks-content">
<div class="tracks-preview">
<img class="tracks-img" src='./assets/hopitality.png'>
<h2 class="tracks-title">HOSPITALITY</h2>
</div>
<div class="tracks-preview">
<img class="tracks-img" src='./assets/defence.png'>
<h2 class="tracks-title">DEFENCE</h2>
</div>
<div class="tracks-preview">
<img class="tracks-img" src='./assets/health.png'>
<h2 class="tracks-title">HEALTH</h2>
</div>
<div class="tracks-preview">
<img class="tracks-img" src='./assets/fintech.png'>
<h2 class="tracks-title">FINTECH</h2>
</div>
<div class="tracks-preview">
<img class="tracks-img" src='./assets/open_innovation.png'>
<h2 class="tracks-title">OPEN <br/> INNOVATION</h2>
</div>
<div class="tracks-preview">
<img class="tracks-img" src='./assets/sponsors-track.png'>
<h2 class="tracks-title">SPONSOR</h2>
</div>
</div>
<!-- modal-->
<div class="tracks-modal modal-open" id="hosp-modal" style="display: none;">
<div class="modal-content">
<h3 class="modal-title">HOSPITALITY</h3>
<div class="modal-navbar">
<h4 class="">DESCRIPTION</h4>
<!-- <h4>GUIDING QUESTIONS</h4>
<h4>RESOURCES</h4> -->
</div>
<div class="modal-text" id="hosp-desc" style="display: none;">
<p>
Hospitality means extending a welcome to travelers or offering a home away from home.It plays a fundamental role to augment or decrease the volume of sales of an organization.
In India hospitality is based on the principle Atithi Devo Bhava, meaning "the guest is God"🙏. It's not just an act of pleasing others but an emotion in India and livelihood of many .So how could we miss it in our adventurous and brainstorming tracks , presenting you the track of Hospitality </p>
</div>
<div class="modal-text" id="hosp-questions" style="display: none;">
<ul>
<li>COMING SOON</li>
</ul>
</div>
<div class="modal-text" id="hosp-resources" style="display: none;">
<ul>
<li>COMING SOON</li>
</ul>
</div>
<p class="modal-exit">X</p>
</div>
</div>
<div class="tracks-modal modal-open" id="def-modal" style="display: none;">
<div class="modal-content">
<h3 class="modal-title">DEFENCE</h3>
<div class="modal-navbar">
<h4 class="">DESCRIPTION</h4>
<!-- <h4>GUIDING QUESTIONS</h4>
<h4>RESOURCES</h4> -->
</div>
<div class="modal-text" id="def-desc" style="display: none;">
<p>
Introducing our DEFENCE track in this hackathon, we aim to encourage the development of innovative and cutting-edge solutions that can improve the capabilities of our defence forces. The defence industry is constantly evolving, and there is a growing need for technology-based solutions that can address complex challenges such as cybersecurity, surveillance, disaster response, training and simulation, logistics and supply chain management, and data analysis and visualization. It's an exciting opportunity for participants to develop innovative solutions that can enhance the capabilities of our defence forces and contribute to national security. We look forward to seeing the creative solutions that participants develop and the impact that they can make.✨ </p>
</div>
<div class="modal-text" id="def-questions" style="display: none;">
<ul>
<li>COMING SOON</li>
</ul>
</div>
<div class="modal-text" id="def-resources" style="display: none;">
<ul>
<li>COMING SOON</li>
</ul>
</div>
<p class="modal-exit">X</p>
</div>
</div>
<div class="tracks-modal modal-open" id="hel-modal" style="display: none;">
<div class="modal-content">
<h3 class="modal-title">HEALTH</h3>
<div class="modal-navbar">
<h4 class="">DESCRIPTION</h4>
<!-- <h4>GUIDING QUESTIONS</h4>
<h4>RESOURCES</h4> -->
</div>
<div class="modal-text" id="hel-desc" style="display: none;">
<p>
Are you passionate about making a difference in people's lives? Do you want to contribute to society and help the less fortunate?
Join the HackOwasp 5.0 health track and work towards creating innovative projects that cater to the health needs of the marginalized and underprivileged. By leveraging technology, you can design solutions that increase accessibility to healthcare services, improve the quality of care, and reduce healthcare disparities.
So, if you're looking for an opportunity to serve others and make a positive impact, HackOwasp 5.0 is the platform for you
</p>
</div>
<div class="modal-text" id="hel-questions" style="display: none;">
<ul>
<li>COMING SOON</li>
</ul>
</div>
<div class="modal-text" id="hel-resources" style="display: none;">
<ul>
<li>COMING SOON</li>
</ul>
</div>
<p class="modal-exit">X</p>
</div>
</div>
<div class="tracks-modal modal-open" id="fin-modal" style="display: none;">
<div class="modal-content">
<h3 class="modal-title">FINTECH</h3>
<div class="modal-navbar">
<h4>DESCRIPTION</h4>
<!-- <h4>GUIDING QUESTIONS</h4>
<h4>RESOURCES</h4> -->
</div>
<div class="modal-text" id="fin-desc" style="display: none;">
<p>
Fintech innovation is progressively deconstructing the walls built by the long-established banking system. This is why it forms an integral part of all upcoming technological advances. It has grown exponentially to become one of the leading factors of economic growth. Modern fintech is primarily driven by AI, big data, cryptocurrencies and blockchain technology which has the potential to revolutionize the financial industry. This is why it becomes an exciting and stimulating addition to our tracks. Presenting our latest track: FinTech. </p>
</div>
<div class="modal-text" id="fin-questions" style="display: none;">
<ul>
<li>COMING SOON</li>
</div>
<div class="modal-text" id="fin-resources" style="display: none;">
<ul>
<li>COMING SOON</li>
</ul>
</div>
<p class="modal-exit">X</p>
</div>
</div>
<div class="tracks-modal modal-open" id="opin-modal" style="display: none;">
<div class="modal-content">
<h3 class="modal-title">OPEN INNOVATION</h3>
<div class="modal-navbar">
<h4>DESCRIPTION</h4>
<!-- <h4>GUIDING QUESTIONS</h4>
<h4>RESOURCES</h4> -->
</div>
<div class="modal-text" id="opin-desc" style="display: none;">
<p>
Be a part of the Open Innovation track at the Hackowasp 5.0 hackathon and unleash your creativity! We are giving you the opportunity to choose whatever challenge piques your interest and showcase your innovative solution at the competition. Do you have a passion for developing futuristic algorithms, inventing cutting-edge software, or creating revolutionary applications? Share your big ideas with us and let them take shape at Hackowasp!
So, bring your coding skills, your ambition, and your spirit of innovation and get ready to make your mark at the Open Innovation track!
</p>
</div>
<div class="modal-text" id="opin-questions" style="display: none;">
<ul>
<li>COMING SOON</li>
</ul>
</div>
<div class="modal-text" id="opin-resources" style="display: none;">
<ul>
<li>COMING SOON</li>
</div>
<p class="modal-exit">X</p>
</div>
</div>
<div class="tracks-modal modal-open" id="spon-modal" style="display: none;">
<div class="modal-content">
<h3 class="modal-title">SPONSOR TRACKS</h3>
<div class="modal-navbar">
<h4 class="">VERBWIRE</h4>
<h4>KOII NETWORKS</h4>
<!-- <h4>RESOURCES</h4> -->
</div>
<div class="modal-text" id="spon-desc" style="display: none;">
<p>
Create a simple application that uses Web3/blockchain technology to provide social.
<br>
1. A fundraising app that mints memorable images as NFTs, for donors to support a social cause <br>
2. A simple app that uploads images of rural communities to IPFS (decentralized storage) for security surveillance <br>
3. A simple app that uploads images of farmers' crops to
IPFS (decentralized storage) <br>
4. A simple app that mints examination IDs of students to the blockchain using NFTs <br>
5. A simple app that stores unique IDs of endangered species, being kept in a conservatory, in an NFT <br>
6. A smart contract that enables a small business to mint tokens for customers who recycle <br>
</p>
</div>
<div class="modal-text" id="spon-questions" style="display: none;">
<p>
Build an app that uses Koii Tasks to coordinate thousands of computers to manage either a content or database system, and pulls in information from customers or third party web resources. Information must be verified using a combination of wallet signatures and novel proofs.
Bonus Points: Use attention mining to reward users and participants.
<br>
Examples: <br>
+ Web3 Social Media <br>
+ Searching and Indexing <br>
+ Unique Blockchain Oracle <br>
+ Linktree Backend <br>
+ Game Backend Manager <br>
</p>
</div>
<div class="modal-text" id="spon-resources" style="display: none;">
<ul>
<li>COMING SOON</li>
</ul>
</div>
<p class="modal-exit">X</p>
</div>
</div>
<div class="tracks-modal" id="hosp-modal-mobile" style="display: none;">
<div class="modal-content">
<h3 class="modal-title">HOSPITALITY</h3>
<div class="modal-mobile-content">
<h4>DESCRIPTION</h4>
<div class="modal-text-mobile">
<p>
Hospitality means extending a welcome to travelers or offering a home away from home.It plays a fundamental role to augment or decrease the volume of sales of an organization.
In India hospitality is based on the principle Atithi Devo Bhava, meaning "the guest is God"🙏. It's not just an act of pleasing others but an emotion in India and livelihood of many .So how could we miss it in our adventurous and brainstorming tracks , presenting you the track of Hospitality </p>
</div>
<!-- <h4>GUIDING QUESTIONS</h4>
<div class="modal-text-mobile">
<ul>
<li>COMING SOON</li>
</ul>
</div>
<h4>RESOURCES</h4>
<div class="modal-text-mobile">
<ul>
<li>COMING SOON</li>
</ul>
</div> -->
</div>
<p class="modal-exit-mobile">CLOSE</p>
</div>
</div>
<div class="tracks-modal" id="def-modal-mobile" style="display: none;">
<div class="modal-content">
<h3 class="modal-title">DEFENCE</h3>
<div class="modal-mobile-content">
<h4>DESCRIPTION</h4>
<div class="modal-text-mobile">
<p>
Introducing our DEFENCE track in this hackathon, we aim to encourage the development of innovative and cutting-edge solutions that can improve the capabilities of our defence forces. The defence industry is constantly evolving, and there is a growing need for technology-based solutions that can address complex challenges such as cybersecurity, surveillance, disaster response, training and simulation, logistics and supply chain management, and data analysis and visualization. It's an exciting opportunity for participants to develop innovative solutions that can enhance the capabilities of our defence forces and contribute to national security. We look forward to seeing the creative solutions that participants develop and the impact that they can make.✨
</p>
</div>
<!-- <h4>GUIDING QUESTIONS</h4>
<div class="modal-text-mobile">
<ul>
<li>COMING SOON</li>
</ul>
</div>
<h4>RESOURCES</h4>
<div class="modal-text-mobile">
<ul>
<li>COMING SOON</li>
</ul>
</div> -->
</div>
<p class="modal-exit-mobile">CLOSE</p>
</div>
</div>
<div class="tracks-modal" id="hel-modal-mobile" style="display: none;">
<div class="modal-content">
<h3 class="modal-title">HEALTH</h3>
<div class="modal-mobile-content">
<h4>DESCRIPTION</h4>
<div class="modal-text-mobile">
<p>
Are you passionate about making a difference in people's lives? Do you want to contribute to society and help the less fortunate?
Join the HackOwasp 5.0 health track and work towards creating innovative projects that cater to the health needs of the marginalized and underprivileged. By leveraging technology, you can design solutions that increase accessibility to healthcare services, improve the quality of care, and reduce healthcare disparities.
So, if you're looking for an opportunity to serve others and make a positive impact, HackOwasp 5.0 is the platform for you
</p>
</div>
<!-- <h4>GUIDING QUESTIONS</h4>
<div class="modal-text-mobile">
<ul>
<li>COMING SOON</li>
</div>
<h4>RESOURCES</h4>
<div class="modal-text-mobile">
<ul>
<li>COMING SOON</li>
</ul>
</div> -->
</div>
<p class="modal-exit-mobile">CLOSE</p>
</div>
</div>
<div class="tracks-modal" id="fin-modal-mobile" style="display: none;">
<div class="modal-content">
<h3 class="modal-title">FINTECH</h3>
<div class="modal-mobile-content">
<h4>DESCRIPTION</h4>
<div class="modal-text-mobile">
<p>
Fintech innovation is progressively deconstructing the walls built by the long-established banking system. This is why it forms an integral part of all upcoming technological advances. It has grown exponentially to become one of the leading factors of economic growth. Modern fintech is primarily driven by AI, big data, cryptocurrencies and blockchain technology which has the potential to revolutionize the financial industry. This is why it becomes an exciting and stimulating addition to our tracks. Presenting our latest track: FinTech. </p>
</div>
<!-- <h4>GUIDING QUESTIONS</h4> -->
<!-- <div class="modal-text-mobile">
<ul>
<li>COMING SOON</li>
</ul>
</div>
<h4>RESOURCES</h4>
<div class="modal-text-mobile">
<ul>
<li>COMING SOON</li>
</ul>
</div> -->
</div>
<p class="modal-exit-mobile">CLOSE</p>
</div>
</div>
<div class="tracks-modal" id="opin-modal-mobile" style="display: none;">
<div class="modal-content">
<h3 class="modal-title">OPEN INNOVATION</h3>
<div class="modal-mobile-content">
<h4>DESCRIPTION</h4>
<div class="modal-text-mobile">
<p>
Be a part of the Open Innovation track at the Hackowasp 5.0 hackathon and unleash your creativity! We are giving you the opportunity to choose whatever challenge piques your interest and showcase your innovative solution at the competition. Do you have a passion for developing futuristic algorithms, inventing cutting-edge software, or creating revolutionary applications? Share your big ideas with us and let them take shape at Hackowasp!
So, bring your coding skills, your ambition, and your spirit of innovation and get ready to make your mark at the Open Innovation track! </p>
</div>
<!-- <h4>GUIDING QUESTIONS</h4>
<div class="modal-text-mobile">
<ul>
<li>COMING SOON</li>
</ul>
</div>
<h4>RESOURCES</h4>
<div class="modal-text-mobile">
<ul>
<li>COMING SOON</li>
</ul>
</div> -->
</div>
<p class="modal-exit-mobile">CLOSE</p>
</div>
</div>
<div class="tracks-modal" id="spon-modal-mobile" style="display: none;">
<div class="modal-content">
<h3 class="modal-title">Sponsor</h3>
<div class="modal-mobile-content">
<h4>VERBWIRE </h4>
<div class="modal-text-mobile">
<p>
Create a simple application that uses Web3/blockchain technology to provide social.
<br>
1. A fundraising app that mints memorable images as NFTs, for donors to support a social cause <br>
2. A simple app that uploads images of rural communities to IPFS (decentralized storage) for security surveillance <br>
3. A simple app that uploads images of farmers' crops to
IPFS (decentralized storage) <br>
4. A simple app that mints examination IDs of students to the blockchain using NFTs <br>
5. A simple app that stores unique IDs of endangered species, being kept in a conservatory, in an NFT <br>
6. A smart contract that enables a small business to mint tokens for customers who recycle <br>
</p>
</div>
<h4>KOII NETWORKS</h4>
<div class="modal-text-mobile">
<p>Build an app that uses Koii Tasks to coordinate thousands of computers to manage either a content or database system, and pulls in information from customers or third party web resources. Information must be verified using a combination of wallet signatures and novel proofs.
Bonus Points: Use attention mining to reward users and participants.
<br>
Examples: <br>
+ Web3 Social Media <br>
+ Searching and Indexing <br>
+ Unique Blockchain Oracle <br>
+ Linktree Backend <br>
+ Game Backend Manager <br>
</p>
</div>
<!-- <h4>RESOURCES</h4>
<div class="modal-text-mobile">
<ul>
<li>COMING SOON</li>
</ul>
</div> -->
</div>
<p class="modal-exit-mobile">CLOSE</p>
</div>
</div>
</div>
<!-- <div class="Tracks_sec">
<h1 class="typedtext"></h1>
</div> -->
</div>
<div class="about-inside-right">
<div class="bubble bubble-1" data-paroller-factor="0.15" data-paroller-factor-xs="0.0"
data-paroller-type="foreground" data-paroller-direction="vertical"
style="transform: translate(0px, 0px); transition: transform 0.1s ease 0s; will-change: transform;">
<span class="bubble-1-top">2000+</span>
<span>Attendees</span>
</div>
<div class="bubble bubble-2" data-paroller-factor="0.1" data-paroller-factor-xs="0.0"
data-paroller-type="foreground" data-paroller-direction="vertical"
style="transform: translate(0px, 0px); transition: transform 0.1s ease 0s; will-change: transform;">
<span class="bubble-2-top">5,00,000</span>
<span>Worth<br>Prizes</span>
</div>
<div class="bubble bubble-3" data-paroller-factor="0.1" data-paroller-factor-xs="0.0"
data-paroller-type="foreground" data-paroller-direction="vertical"
style="transform: translate(0px, 0px); transition: transform 0.1s ease 0s; will-change: transform;">
<span class="bubble-3-top">36</span>
<span>Hours</span>
</div>
<div class="bubble bubble-4" data-paroller-factor="0.05" data-paroller-factor-xs="0.0"
data-paroller-type="foreground" data-paroller-direction="vertical"
style="transform: translate(0px, 0px); transition: transform 0.1s ease 0s; will-change: transform;"></div>
<div data-paroller-factor="-0.02" data-paroller-factor-xs="0.0" data-paroller-type="foreground"
data-paroller-direction="vertical"
style="transform: translate(0px, 0px); transition: transform 0.1s ease 0s; will-change: transform;">
<img loading="lazy" class="element-1 bobbing" src="./assets/shark.png">
</div>
</div>
</div>
</section>
<!-- prizes section -->
<section class="speakers">
<div class="fullWidth">
<img src="./assets/fish-sm.png" class="small-fish">
</div>
<img loading="lazy" class="element-1" src="./assets/turtle.png" data-paroller-factor="-0.05"
data-paroller-factor-xs="0.0" data-paroller-type="foreground" data-paroller-direction="vertical"
style="transform: translate(0px, 0px); transition: transform 0.1s ease 0s; will-change: transform;">
<div class="speakers-top">
<div class="speakers-top-left">
<h2 id="prizes" class="orange">Prizes</h2>
<!-- <div class="prizes_sec">
<div class="card">
<h1>
1ST
</h1>
<span>
<ol>
<li>1. ₹15,000</li>
<li>2. Wolfram Pro for 1 year and Wolfram One</li>
<li>3. Lifetime taskade upgrade for winners</li>
<li>4. Grabon coupons</li>
<li>5. Axure certificates</li>
<li>6. 5 O'Reilly ebooks of choice</li>
<li>7. 100% off on interview buddy</li>
<li>8. Free nord vpn access</li>
<li>9. Goodies and Swag from Github and devfolio</li>
</ol>
</span>
</div>
<div class="card">
<h1>
2ND
</h1>
<span>
<ol>
<li>1. ₹10,000</li>
<li>2. Wolfram Pro for 1 year and Wolfram One</li>
<li>3. Lifetime taskade upgrade for winners</li>
<li>4. Grabon coupons</li>
<li>5. Axure certificates</li>
<li>6. 5 O'Reilly ebooks of choice</li>
<li>7. 100% off on interview buddy</li>
<li>8. Free nord vpn access</li>
<li>9. Goodies and Swag from Github and devfolio</li>
</ol>
</span>
</div>
<div class="card">
<h1>
3RD
</h1>
<span>
<ol>
<li>1. ₹5,000</li>
<li>2. Wolfram Pro for 1 year and Wolfram One</li>
<li>3. Lifetime taskade upgrade for winners</li>
<li>4. Grabon coupons</li>
<li>5. Axure certificates</li>
<li>6. 100% off on interview buddy</li>
<li>7. Free nord vpn access</li>
<li>8. Goodies and Swag from Github and devfolio</li>
</ol>
</span>
</div>
</div>
</div>
</div> -->
<!-- <div>
<div class="wrapper">
<ul class="carousel" data-target="carousel">
<div class="card" data-target="card"> Sponsor 1</div>
<li class="card" data-target="card"></li>
<li class="card" data-target="card"></li>
<li class="card" data-target="card"></li>
<li class="card" data-target="card"></li>
<li class="card" data-target="card"></li>
<li class="card" data-target="card"></li>
<li class="card" data-target="card"></li>
<li class="card" data-target="card"></li>
</ul>
<div class="button-wrapper">
<button data-action="slideLeft">L</button>
<button data-action="slideRight">R</button>
</div>
</div>
</div> -->
</section>
<section class="judges-section" style="background-color: #051228;">
<div class="judges-top-left">
<h2 class="orange">Judges</h2>
<!-- <p class="text-muted" style="color: rgba(255, 255, 255, 0.612);">Our judges are here to crown the hackathon champs!</p> -->
</div>
<div class="judges-container">
<div class="judges-row">
<div class="judges-block">
<div class="img-block">
<img src="https://media.licdn.com/dms/image/C4E03AQFTvwAS-q8wvA/profile-displayphoto-shrink_400_400/0/1634157586299?e=1686787200&v=beta&t=ZeoQFQqWVwT-kxqd63SmbUEWvXA0WM5zba6qwXqG6kc" class="rounded-img" alt="image1">
<div class="judges-content">
<h4 class="judges-h4">Pratyush Agarwal</h4>
<p class="text-muted">Engineering @Deliveroo</p>
</div>
</div>
</div>
<div class="judges-block">
<div class="img-block">
<img src="https://media.licdn.com/dms/image/C4D03AQEBXWJQN9DYvg/profile-displayphoto-shrink_400_400/0/1652911947800?e=1686787200&v=beta&t=UyWaGnvsrrlqfL4P-pj8rQuxJWpnmdki8nSNkg_D87o" class="rounded-img" alt="image1">
<div class="judges-content">
<h4 class="judges-h4">Avinash Koshal</h4>
<p class="text-muted">Cloud Support Engineer - I @AWS</p>
</div>
</div>
</div>
<div class="judges-block">
<div class="img-block">
<img src="https://media.licdn.com/dms/image/C5603AQF3F__cWjdBaA/profile-displayphoto-shrink_400_400/0/1660144290642?e=1686787200&v=beta&t=ZG2gRdigtVeJudgQdGqzLykzkMFOmfspteAVZdvdjS8" class="rounded-img alt="image1">
<div class="judges-content">
<h4 class="judges-h4">Kritarth Mittal</h4>
<p class="text-muted">Founder, Soshals</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- credits: https://bootstrapcrew.com/snippets/team-members/ -->
<section id="waves" class="schedule">
<img loading="lazy" class="element element-1" src="./assets/jellies.png" data-paroller-factor="0.3"
data-paroller-factor-xs="0.0" data-paroller-type="foreground" data-paroller-direction="vertical"
style="transform: translate(0px, 0px); transition: transform 0.1s ease 0s; will-change: transform;">
<img loading="lazy" class="element element-2" src="./assets/bubbles.png" data-paroller-factor="0.5"
data-paroller-factor-xs="0.0" data-paroller-type="foreground" data-paroller-direction="vertical"
style="transform: translate(0px, 0px); transition: transform 0.1s ease 0s; will-change: transform;">
<div class="schedule-top">
<div class="schedule-top-left">
<h2 id="faq" class="purple">FAQs</h2>
<h3 class="Faqs_heading">Frequently Asked Questions</h3>
<div class="Faqs_section">
<div class="container">
<div class="accordion">
<div class="accordion-item" id="question1">
<a class="accordion-link" href="#question1">
What is the team size for HackOwasp 5.0?
<ion-icon class="add_ion"name="add-outline"></ion-icon>
<ion-icon class="sub_ion"name="remove-outline"></ion-icon>
</a>
<div class="answer">
<p> A Team can consist of 2-5 members.</p>
</div>
</div>
</div>
</div>
<div class="container">
<div class="accordion">
<div class="accordion-item" id="question2">
<a class="accordion-link" href="#question2">
What if I have no team?
<ion-icon class="add_ion"name="add-outline"></ion-icon>
<ion-icon class="sub_ion"name="remove-outline"></ion-icon>
</a>
<div class="answer">
<p> We will club individual members and you may form a team in our discord server as well.</p>
</div>
</div>
</div>
</div>
<div class="container">
<div class="accordion">
<div class="accordion-item" id="question7">
<a class="accordion-link" href="#question7">
What is the cost of participation
<ion-icon class="add_ion"name="add-outline"></ion-icon>
<ion-icon class="sub_ion"name="remove-outline"></ion-icon>
</a>
<div class="answer">
<p>HackOWASP 5.0 is completely free to participate for everyone</p>
</div>
</div>
</div>
</div>
<div class="container">
<div class="accordion">
<div class="accordion-item" id="question3">
<a class="accordion-link" href="#question3">
How long is the hackathon going to last ?
<ion-icon class="add_ion"name="add-outline"></ion-icon>
<ion-icon class="sub_ion"name="remove-outline"></ion-icon>
</a>
<div class="answer">
<p> Hackathon is going to last for 36 hours</p>
</div>
</div>
</div>
</div>
<div class="container">
<div class="accordion">
<div class="accordion-item" id="question4">
<a class="accordion-link" href="#question4">
Do I need Experience?
<ion-icon class="add_ion"name="add-outline"></ion-icon>
<ion-icon class="sub_ion"name="remove-outline"></ion-icon>
</a>
<div class="answer">
<p>No, you do not need any prior development experience. We will assign you mentors to assist you in figuring things out. Of course, willingness to think, learn, and cooperate is a cherry on the top.</p>
</div>
</div>
</div>
</div>
<div class="container">
<div class="accordion">
<div class="accordion-item" id="question5">
<a class="accordion-link" href="#question5">
<!-- Do we need to have a working prototype / Website of our product? -->
Is a working prototype / website of our product required?
<ion-icon class="add_ion"name="add-outline"></ion-icon>
<ion-icon class="sub_ion"name="remove-outline"></ion-icon>
</a>
<div class="answer">
<p>Yes, You will need a functioning prototype of how your product/idea works to pitch it to the judges in the final round.</p>
</div>
</div>
</div>
</div>
<div class="container">
<div class="accordion">
<div class="accordion-item" id="question6">
<a class="accordion-link" href="#question6">
On what basis will the winners be selected?
<ion-icon class="add_ion"name="add-outline"></ion-icon>
<ion-icon class="sub_ion"name="remove-outline"></ion-icon>
</a>
<div class="answer">
<p>The winners of HackOwasp 5.0 will be selected based on Evaluation criteria which will include novelty of the idea, complexity, clarity, and details in the prescribed format, feasibility, practicability, sustainability, the scale of impact, user experience, and potential for prospects.</p>
</div>
</div>
</div>
</div>
<div class="container">
<div class="accordion">
<div class="accordion-item" id="question8">
<a class="accordion-link" href="#question8">
What is the mode of Hackathon ?
<ion-icon class="add_ion"name="add-outline"></ion-icon>
<ion-icon class="sub_ion"name="remove-outline"></ion-icon>
</a>
<div class="answer">
<p>HackOWASP 5.0 is being conducted in HYBRID mode that is OFFLINE for Thapar University students and ONLINE for all the other students pan India and worldwide</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="schedule-day">
</div>
<canvas width="767" height="485" style="touch-action: auto; transform: scale(1); cursor: inherit;"></canvas>
</section>
<section class="partners">
<div class="submarine">
<img loading="lazy" class="element element-1" src="./assets/submarine.png" data-paroller-factor="-0.2"
data-paroller-factor-xs="0.0" data-paroller-type="foreground" data-paroller-direction="horizontal"
style="transform: translate(0px, 0px); transition: transform 0.1s ease 0s; will-change: transform;">
</div>
<img loading="lazy" class="element element-2" src="./assets/bubbles.png" data-paroller-factor="0.5"
data-paroller-factor-xs="0.0" data-paroller-type="foreground" data-paroller-direction="vertical"
style="transform: translate(0px, 0px); transition: transform 0.1s ease 0s; will-change: transform;">
<img loading="lazy" class="element element-3" src="./assets/bubbles.png" data-paroller-factor="0.3"
data-paroller-factor-xs="0.0" data-paroller-type="foreground" data-paroller-direction="vertical"
style="transform: translate(0px, 0px); transition: transform 0.1s ease 0s; will-change: transform;">
<div class="partners-top">
<div class="partners-top-left">
<h2 id="partners" class="blue">Partners</h2>
<!-- <div class="partners_sec">
<h1>"Collaborating with the best to inspire innovation."</h1>
</div> -->
</div>
<div class="partners-top-right">
<div>
<a href="mailto:[email protected]" class="btn btn-orange" style="margin-top: 25px;">
Sponsor Us
</a>
</div>
</div>
</div>
<div class="partners-list">
<h4>DIAMOND</h4>
<!--<h4>Coming Soon</h4>-->
<ul>
<li>
<a href="https://devfolio.co" target="_blank">