-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
1370 lines (1151 loc) · 55.3 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>
<html lang="en">
<head>
<title>HACKOWASP — OWASP CHAPTER TIET</title>
<meta charset="utf-8">
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1.0" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<link href="https://fonts.googleapis.com/css?family=Muli:300,400,700,900" rel="stylesheet">
<link rel="stylesheet" href="fonts/icomoon/style.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/jquery-ui.css">
<link rel="stylesheet" href="css/owl.carousel.min.css">
<link rel="stylesheet" href="css/owl.theme.default.min.css">
<link rel="stylesheet" href="css/owl.theme.default.min.css">
<link rel="stylesheet" href="css/jquery.fancybox.min.css">
<link rel="stylesheet" href="css/bootstrap-datepicker.css">
<!-- <link rel="stylesheet" href="fonts/flaticon/font/flaticon.css"> -->
<link rel="stylesheet" href="icon/font/flaticon.css">
<link rel="stylesheet" href="css/aos.css">
<link href="css/jquery.mb.YTPlayer.min.css" media="all" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="css/style.css">
</head>
<body data-spy="scroll" data-target=".site-navbar-target" data-offset="300" style="background-color: black">
<div class="site-wrap">
<div class="site-mobile-menu site-navbar-target nav-mobile">
<div class="site-mobile-menu-header">
<div class="site-mobile-menu-close mt-3">
<span class="icon-close2 js-menu-toggle"></span>
</div>
</div>
<div class="site-mobile-menu-body"></div>
</div>
<header class="site-navbar py-4 js-sticky-header site-navbar-target" role="banner" style="background-color: black">
<div class="container-fluid">
<div class="d-flex align-items-center">
<div class="site-logo"><img src="images/main logo.jpg" width="80" height=auto> <a href="index.html"><font color="white" size="+1">HACKOWASP V2.0</font></a></div>
<div class="ml-auto">
<nav class="site-navigation position-relative text-right" role="navigation">
<ul class="site-menu main-menu js-clone-nav mr-auto d-none d-lg-block">
<li><a href="#home-section" class="nav-link" ><p class="nav-home"><font size="+1">Home</font></p></a></li>
<li><a href="#FAQ-section" class="nav-link"><p class="nav-home"><font size="+1">FAQ</font></p></a></li>
<li><a href="#schedule-section" class="nav-link"><p class="nav-home"><font size="+1">Schedule</font></p></a></li>
<li><a href="#team-section" class="nav-link"><p class="nav-home"><font size="+1">Team</font></p></a></li>
<li><a href="#sponsors-section" class="nav-link"><p class="nav-home"><font size="+1">Sponsors</font></p></a></li>
<!--<li><a href="#contact-section" class="nav-link"><font color="white" size="+1">Register</font></a></li>-->
</ul>
</nav>
<a href="#" class="d-inline-block d-lg-none site-menu-toggle js-menu-toggle float-right"><span class="icon-menu h3"></span></a>
</div>
</div>
</div>
</header>
<a id="bgndVideo" class="player"
data-property="{videoURL:'https://www.youtube.com/watch?v=TG8PG3pBNk4',ratio: 4/3 ,showYTLogo:false,showAnnotations: false, showControls: false, cc_load_policy: false, containment:'#home-section',autoPlay:true, mute:true ,opacity:1}">
</a>
<div class="intro-section" id="home-section" style="background-color:black; width:100vw; height:300px">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-12 mx-auto text-center" data-aos="fade-up">
<h1 class="mb-3">HackOwasp 2.0</h1>
<p class="lead mx-auto desc mb-5"><font color="white"> Your Vision Our Future </font> </p>
<p class="text-center">
<a href="#schedule-section" class="btn btn-outline-white py-3 px-5"><big>Get Into The Schedule</big></a>
</p>
</div>
</div>
</div>
</div>
<div class="schedule-wrap">
<div class="d-md-flex align-items-center">
<div class="hours mr-md-4 mb-4 mb-lg-0">
<strong class="d-block">1st-2nd February 2020</strong>
<font color="white">Get yourself registered for the big event before registrations are closed</font>
</div>
<div class="cta ml-auto">
<a href="#contact-section" target="_blank" class="smoothscroll d-flex d-md-flex align-items-center btn">
<button onclick="popup('hackowasp-20');" class="tsbutton">Register Now</button>
</a>
</div>
</div>
</div>
<div class="site-section">
<div class="container">
<div class="row justify-content-center text-center mb-5">
<div class="col-md-8 section-heading">
<!-- <span class="subheading">Stay Healthy</span> -->
<h2 class="benefits-heading heading mb-3 ">Benefits of HACKOWASP</h2>
<p class="benefits-text">Somewhere, something incredible is waiting to be known.<br>
We know you have dreams, we do too!</p>
</div>
</div>
<!-- Slider -->
<div class="owl-carousel nonloop-block-14 block-14" data-aos="fade">
<div class="slide">
<div class="ftco-feature-1">
<span class="icon flaticon-idea"></span>
<div class="ftco-feature-1-text">
<h2>GRAB THE OPPORTUNITIES</h2>
<p>In this hackathon, we have invited some of the most prominent companies for you to pitch your ideas and receive feedback from the top leaders of the technical world!</p>
</div>
</div>
</div>
<div class="slide">
<div class="ftco-feature-1">
<span class="icon flaticon-skills"></span>
<div class="ftco-feature-1-text">
<h2>WIN EXCITING REWARDS</h2>
<p>Get an opportunity to win cash prizes and goodies worth more than one lac!</p>
</div>
</div>
</div>
<div class="slide">
<div class="ftco-feature-1">
<span class="icon flaticon-skills"></span>
<div class="ftco-feature-1-text">
<h2>IMPROVE YOUR SKILLS</h2>
<p>To improve your development skills what's better than a HACKATHON! So here we are, providing you, with the best opportunity to upgrade your skills to the next level.</p>
</div>
</div>
</div>
<div class="slide">
<div class="ftco-feature-1">
<span class="icon flaticon-cpu"></span>
<div class="ftco-feature-1-text">
<h2>GET YOUR HANDS ON LATEST TECH</h2>
<p>Hackowasp partners give you their problem statements and as a tech-savvy developer, this is something you really can't miss.</p>
</div>
</div>
</div>
<div class="slide">
<div class="ftco-feature-1">
<span class="icon flaticon-effort"></span>
<div class="ftco-feature-1-text">
<h2>TAKE UP CHALLENGES THAT REALLY MATTER</h2>
<p>We create challenges in collaboration with startups and organizations. Your solution could help to pave the way for a better future.</p>
</div>
</div>
</div>
<div class="slide">
<div class="ftco-feature-1">
<span class="icon flaticon-team"></span>
<div class="ftco-feature-1-text">
<h2>COLLABORATE UNDER PRESSURE</h2>
<p>It may not sound like a selling point but experiencing the pressure of having to come together with people you don't know and create something entirely new in a very short space of time can be hugely rewarding.</p>
</div>
</div>
</div>
<!-- <div class="slide">
<div class="ftco-feature-1">
<span class="icon flaticon-stationary-bike"></span>
<div class="ftco-feature-1-text">
<h2>Body Warmup</h2>
<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind
texts.</p>
</div>
</div>
</div>-->
<!-- <div>Icons made by <a href="https://www.flaticon.com/authors/gregor-cresnar" title="Gregor Cresnar">Gregor Cresnar</a> from <a href="https://www.flaticon.com/" title="Flaticon">www.flaticon.com</a></div><div>Icons made by <a href="https://www.flaticon.com/authors/becris" title="Becris">Becris</a> from <a href="https://www.flaticon.com/" title="Flaticon">www.flaticon.com</a></div><div>Icons made by <a href="https://www.flaticon.com/authors/eucalyp" title="Eucalyp">Eucalyp</a> from <a href="https://www.flaticon.com/" title="Flaticon">www.flaticon.com</a></div><div>Icons made by <a href="https://www.flaticon.com/authors/srip" title="srip">srip</a> from <a href="https://www.flaticon.com/" title="Flaticon">www.flaticon.com</a></div> -->
</div>
</div>
</div>
<!--<div class="bgimg" style="background-image: url();" data-stellar-background-ratio="0.5" >
<div class="container">
<div class="row align-items-center justify-content-center text-center">
<div class="col-md-7">
<h2 class="">Get The Result You Want</h2>
<p class="lead mx-auto desc mb-5">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aspernatur, laudantium quia blanditiis ipsum. <a href="#" target="_blank">Get Started</a></p>
</div>
</div>
</div>
</div>-->
<div class="site-section" id="FAQ-section" >
<div class="bg-image" style="background-image: url(images/bg.jpg) ">
<div class="container">
<div class="row justify-content-center text-center mb-5">
<div class="col-md-8 section-heading">
<!--<span class="subheading">Fitness Class</span>-->
<!-- CHANGE 2-->
<h2 class="heading mb-3">Frequently Asked Questions</h2>
<!-- CHANGE 3-->
<p>You might be getting inquisitive about the event so here is a list of FAQs for your convenience!</p>
<!-- CHANGE 4-->
</div>
</div>
<div class="row">
<div class="col-lg-6">
<div class="class-item d-flex align-items-center">
<!--<a> href="single.html" class="class-item-thumbnail">
<img src="images/img_1.jpg" alt="Image">
</a>-->
<div class="class-item-text">
<h2><!--<a href="single.html">-->What if I've never been to a hackathon before?<!--</a>--></h2>
<!--<span>By Justin Daniel</span>,
<span>30 minutes</span>-->
<span>Then we're so glad HACKOWASP will be your first ever! We expect you to have some programming or technical experience, but it's not a requirement. We'll have talks, mentors and workshops to help you with your project.</span>
</div>
</div>
<div class="class-item d-flex align-items-center">
<!--<a> href="single.html" class="class-item-thumbnail">
<img src="images/img_1.jpg" alt="Image">
</a>-->
<div class="class-item-text">
<h2><!--<a href="single.html">-->Is there ID requirement to enter the event?<!--</a>--></h2>
<!--<span>By Justin Daniel</span>,
<span>30 minutes</span>-->
<span>Yes an ID proof will be required for the entry in the event. It can be Aadhar card, College ID, Pan ID etc.</span>
</div>
</div>
<div class="class-item d-flex align-items-center">
<!--<a> href="single.html" class="class-item-thumbnail">
<img src="images/img_1.jpg" alt="Image">
</a>-->
<div class="class-item-text">
<h2><!--<a href="single.html">-->How will we get our registration slips if we register online?<!--</a>--></h2>
<!--<span>By Justin Daniel</span>,
<span>30 minutes</span>-->
<span>You'll be provided a serial number at the time of registration. You can collect the registration slips from the desk on the day of the event.</span>
</div>
</div>
<div class="class-item d-flex align-items-center">
<!--<a> href="single.html" class="class-item-thumbnail">
<img src="images/img_1.jpg" alt="Image">
</a>-->
<div class="class-item-text">
<h2><!--<a href="single.html">-->Do you offer refunds?<!--</a>--></h2>
<!--<span>By Justin Daniel</span>,
<span>30 minutes</span>-->
<span>Sorry, the fee is non refundable. However, in case of medical or any other comparable reason it will be taken into consideration.</span>
</div>
</div>
<div class="class-item d-flex align-items-center">
<div class="class-item-text">
<h2><!--<a href="single.html">-->What is the registration fee?<!--</a>--></h2>
<!--<span>By Justin Daniel</span>,
<span>30 minutes</span>-->
<span>Registration fee Rs 250 per participant for Non - Thapar students and it is free for all Thapar students</span>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="class-item d-flex align-items-center">
<!--<a> href="single.html" class="class-item-thumbnail">
<img src="images/img_1.jpg" alt="Image">
</a>-->
<div class="class-item-text">
<h2><!--<a href="single.html">-->How many meals will be provided?<!--</a>--></h2>
<!--<span>By Justin Daniel</span>,
<span>30 minutes</span>-->
<span>Five to six meals will be provided to the participants which will include a lunch, a dinner, two to three time snacks and a breakfast on the second day.</span>
</div>
</div>
<!--<div class="class-item d-flex align-items-center">
<a> href="single.html" class="class-item-thumbnail">
<img src="images/img_1.jpg" alt="Image">
</a>
<div class="class-item-text">
<h2><a href="single.html">What is the arrangement for our accommodation ?</a></h2>
<span>By Justin Daniel</span>,
<span>30 minutes</span>
<span>We'll be providing both AC and Non-AC rooms for 2 days that is for 1st February and 2nd February whose prices will be updated soon on the website.</span>
</div>
</div>-->
<div class="class-item d-flex align-items-center">
<!--<a> href="single.html" class="class-item-thumbnail">
<img src="images/img_1.jpg" alt="Image">
</a>-->
<div class="class-item-text">
<h2><!--<a href="single.html">-->What type of payments do you accept?<!--</a>--></h2>
<!--<span>By Justin Daniel</span>,
<span>30 minutes</span>-->
<span>We accept cash payment as offline medium, and Google pay or paytm as online mediums.</span>
</div>
</div>
<div class="class-item d-flex align-items-center">
<!--<a> href="single.html" class="class-item-thumbnail">
<img src="images/img_1.jpg" alt="Image">
</a>-->
<div class="class-item-text">
<h2><!--<a href="single.html">-->What is the date, time and venue of the HACKOWASP 2.O?<!--</a>--></h2>
<!--<span>By Justin Daniel</span>,
<span>30 minutes</span>-->
<span>The HACKOWASP 2.O will be organised in Thapar Institute of Engineering and Technology, Patiala starting from 1st February 2020 to 2nd February 2020.</span>
</div>
</div>
<div class="class-item d-flex align-items-center">
<!--<a> href="single.html" class="class-item-thumbnail">
<img src="images/img_1.jpg" alt="Image">
</a>-->
<div class="class-item-text">
<h2><!--<a href="single.html">-->Will you take care of our travel expenses?<!--</a>--></h2>
<!--<span>By Justin Daniel</span>,
<span>30 minutes</span>-->
<span>We will not be covering travel expenses although coupons might be provided for travel.</span>
</div>
</div>
<div class="class-item d-flex align-items-center">
<div class="class-item-text">
<h2><!--<a href="single.html">-->What is the minimum and maximum number of members per team?<!--</a>--></h2>
<!--<span>By Justin Daniel</span>,
<span>30 minutes</span>-->
<span>Minimum number of members per team is four and maximum is six.</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--<div class="bgimg" style="background-image: url();" data-stellar-background-ratio="0.5">
<div class="container">
<div class="row align-items-center justify-content-center text-center">
<div class="col-md-7">
<h2 class="">Every Step Counts</h2>
<p class="lead mx-auto desc mb-5">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Tempore ad, reprehenderit enim!
<a href="#" target="_blank">Get Started</a></p>
</div>
</div>
</div>
</div>-->
<div class="site-section" id="schedule-section">
<div class="container">
<div class="row justify-content-center text-center mb-5">
<div class="col-md-8 section-heading">
<!--<span class="subheading">Event Sched</span>-->
<h2 class="heading mb-3">Schedule</h2>
<p>A prior information regarding the events will make you completely ready for HACK-OWASP. So here is the schedule for the same!</p>
</div>
</div>
<!--
<div class="row">
<div class="col-12">
<ul class="nav days d-flex" role="tablist">
<li class="nav-item">
<a class="nav-link " id="sunday-tab" data-toggle="tab" href="#nav-sunday" role="tab" aria-controls="sunday"
aria-selected="true">H</a>
</li>
<li class="nav-item">
<a class="nav-link" id="sunday-tab" data-toggle="tab" href="#nav-monday" role="tab" aria-controls="monday"
aria-selected="false">A</a>
</li>
<li class="nav-item">
<a class="nav-link" id="sunday-tab" data-toggle="tab" href="#nav-tuesday" role="tab" aria-controls="tuesday"
aria-selected="false">C</a>
</li>
<li class="nav-item">
<a class="nav-link" id="sunday-tab" data-toggle="tab" href="#nav-wednesday" role="tab" aria-controls="wednesday"
aria-selected="false">K</a>
</li>
<li class="nav-item">
<a class="nav-link" id="sunday-tab" data-toggle="tab" href="#nav-thursday" role="tab" aria-controls="thursday"
aria-selected="false">O</a>
</li><li class="nav-item">
<a class="nav-link" id="sunday-tab" data-toggle="tab" href="#nav-friday" role="tab" aria-controls="friday"
aria-selected="false">W</a>
</li>
<li class="nav-item">
<a class="nav-link" id="sunday-tab" data-toggle="tab" href="#nav-saturday" role="tab" aria-controls="saturday"
aria-selected="false">A</a>
</li>
<li class="nav-item">
<a class="nav-link" id="sunday-tab" data-toggle="tab" href="#nav-saturday" role="tab" aria-controls="saturday"
aria-selected="false">S</a>
</li>
<li class="nav-item">
<a class="nav-link" id="sunday-tab" data-toggle="tab" href="#nav-saturday" role="tab" aria-controls="saturday"
aria-selected="false">P</a>
</li>
</ul>
</div>
</div> -->
<div class="tab-content">
<div class="tab-pane fade show active" id="nav-sunday" role="tabpanel" aria-labelledby="nav-sunday-tab">
<div class="row">
<div class="col-lg-6">
<div class="class-item d-flex align-items-center">
<div class="class-item-text">
<span>Feb 1 Morning</span>
<h2>Inauguration</h2>
<span>Day 1</span>
</div>
</div>
<div class="class-item d-flex align-items-center">
<div class="class-item-text">
<span>Feb 1 10:00am</span>
<h2>Hack Start</h2>
<span>Day 1</span>
</div>
</div>
<div class="class-item d-flex align-items-center">
<div class="class-item-text">
<span>Feb 1 02:00pm - 03:00pm</span>
<h2>Lunch</h2>
<span>Day 1</span>
</div>
</div>
<div class="class-item d-flex align-items-center">
<div class="class-item-text">
<span>Feb 1 03:00 PM</span>
<h2>First Round of Evaluation</h2>
<span>Day 1</span>
</div>
</div>
<div class="class-item d-flex align-items-center">
<div class="class-item-text">
<span>Feb 1 06:00 PM</span>
<h2>Snacks</h2>
<span>Day 1</span>
</div>
</div>
<div class="class-item d-flex align-items-center">
<div class="class-item-text">
<span>Feb 1 10:00 PM – 11:00 PM</span>
<h2>Dinner</h2>
<span>Day 1</span>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="class-item d-flex align-items-center">
<div class="class-item-text">
<span>Feb 1 11:00 PM</span>
<h2>Second Round of Evaluation</h2>
<span>Day 1</span>
</div>
</div>
<div class="class-item d-flex align-items-center">
<div class="class-item-text">
<span>Feb 2 03:00 AM</span>
<h2>Midnight Snacks</h2>
<span>Day 2</span>
</div>
</div>
<div class="class-item d-flex align-items-center">
<div class="class-item-text">
<span>Feb 2 07:00 AM</span>
<h2>Third Round of Evaluation – First Elimination Round</h2>
<span>Day 2</span>
</div>
</div>
<div class="class-item d-flex align-items-center">
<div class="class-item-text">
<span>Feb 2 08:00 AM - 09:00 AM</span>
<h2>Breakfast</h2>
<span>Day 2</span>
</div>
</div>
<div class="class-item d-flex align-items-center">
<div class="class-item-text">
<span>Feb 2 10:00 AM- 1:00 PM</span>
<h2>Pitching</h2>
<span>Day 2</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--<div class="bgimg" style="background-image: url('images/bg_1.jpg');" data-stellar-background-ratio="0.5">-->
<div class="bgimg" id="owasp_image" style="background-image: url(images/owasp_bg.jpg);" data-stellar-background-ratio="0.5">
<div class="container">
<div class="row align-items-center justify-content-center text-center">
<div class="col-md-7">
<h2 class="">ABOUT OWASP</h2>
<p class="lead mx-auto desc mb-5">The Open Web Application Security Project (OWASP) Student chapter,Thapar University helps to teach, learn, and inspire application security. <!--<a href="#" target="_blank">Get Started</a>--></p>
</div>
</div>
</div>
</div>
<div class="site-section" id="team-section">
<div class="container">
<div class="row justify-content-center text-center mb-5" data-aos="fade-up">
<div class="col-md-8 section-heading">
<h2 class="heading mb-3">Our Team</h2>
<p>Individual commitment to a group effort--that is what makes a team work. So here, we present to you our amazing team of hackowasp 2.0</p>
</div>
</div>
<div class="row">
<div class="col-lg-3 mb-4 mb-lg-0 col-md-6 text-center" data-aos="fade-up" data-aos-delay="">
<div class="person">
<img src="images/harkirat.jpg" alt="Image" class="img-fluid">
<h3>Harkirat Nagpal</h3>
<p class="position">Gen Sec</p>
<!--<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind
texts.</p>-->
</div>
</div>
<div class="col-lg-3 mb-4 mb-lg-0 col-md-6 text-center" data-aos="fade-up" data-aos-delay="100">
<div class="person">
<img src="images/Anmol.jpeg" alt="Image" class="img-fluid">
<h3>Anmol Goyal</h3>
<p class="position">Joint Sec</p>
<!--<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind
texts.</p>-->
</div>
</div>
<div class="col-lg-3 mb-4 mb-lg-0 col-md-6 text-center" data-aos="fade-up" data-aos-delay="200">
<div class="person">
<img src="images/Sirish.jpeg" alt="Image" class="img-fluid">
<h3>Sirish Bhudolia</h3>
<p class="position">Joint Sec</p>
<!--<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind
texts.</p>-->
</div>
</div>
<div class="col-lg-3 mb-4 mb-lg-0 col-md-6 text-center" data-aos="fade-up" data-aos-delay="300">
<div class="person">
<img src="images/Malvika.jpeg" alt="Image" class="img-fluid">
<h3>Malvika</h3>
<p class="position">NonTech Head</p>
<!--<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind
texts.</p>-->
</div>
</div>
<div class="col-lg-3 mb-4 mb-lg-0 col-md-6 text-center" data-aos="fade-up" data-aos-delay="300">
<div class="person">
<img src="images/Sarthak.jpg" alt="Image" class="img-fluid">
<h3>Sarthak Sharma</h3>
<p class="position">Gen Sec</p>
<!--<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind
texts.</p>-->
</div>
</div>
<div class="col-lg-3 mb-4 mb-lg-0 col-md-6 text-center" data-aos="fade-up" data-aos-delay="300">
<div class="person">
<img src="images/Leeza.jpg" alt="Image" class="img-fluid">
<h3>Leeza</h3>
<p class="position">Content Head</p>
<!--<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind
texts.</p>-->
</div>
</div>
<div class="col-lg-3 mb-4 mb-lg-0 col-md-6 text-center" data-aos="fade-up" data-aos-delay="300">
<div class="person">
<img src="images/Abhishek.jpg" alt="Image" class="img-fluid">
<h3>Abhishek Goyal</h3>
<p class="position">Tech Head</p>
<!--<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind
texts.</p>-->
</div>
</div>
<!--<div class="col-lg-3 mb-4 mb-lg-0 col-md-6 text-center" data-aos="fade-up" data-aos-delay="300">
<div class="person">
<img src="images/Rachit.jpeg" alt="Image" class="img-fluid">
<h3>Rachit</h3>
<p class="position">Core</p>
<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind
texts.</p>
</div>
</div>
<div class="col-lg-3 mb-4 mb-lg-0 col-md-6 text-center" data-aos="fade-up" data-aos-delay="300">
<div class="person">
<img src="images/Arsh.png" alt="Image" class="img-fluid">
<h3>Arsh Mittal</h3>
<p class="position">Core</p>
<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind
texts.</p>
</div>
</div>
<div class="col-lg-3 mb-4 mb-lg-0 col-md-6 text-center" data-aos="fade-up" data-aos-delay="300">
<div class="person">
<img src="images/Rohan.jpg" alt="Image" class="img-fluid">
<h3>Rohan</h3>
<p class="position">Core</p>
<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind
texts.</p>
</div>
</div>
<div class="col-lg-3 mb-4 mb-lg-0 col-md-6 text-center" data-aos="fade-up" data-aos-delay="300">
<div class="person">
<img src="images/Manmeet.jpg" alt="Image" class="img-fluid">
<h3>Manmeet</h3>
<p class="position">Core</p>
<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind
texts.</p>
</div>
</div>
<div class="col-lg-3 mb-4 mb-lg-0 col-md-6 text-center" data-aos="fade-up" data-aos-delay="300">
<div class="person">
<img src="images/Govind.jpeg" alt="Image" class="img-fluid">
<h3>Govind</h3>
<p class="position">Core</p>
<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind
texts.</p>
</div>
</div>
<div class="col-lg-3 mb-4 mb-lg-0 col-md-6 text-center" data-aos="fade-up" data-aos-delay="300">
<div class="person">
<img src="images/Pranav.jpg" alt="Image" class="img-fluid">
<h3>Pranav Khapra</h3>
<p class="position">Core</p>
<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind
texts.</p>
</div>
</div>
<div class="col-lg-3 mb-4 mb-lg-0 col-md-6 text-center" data-aos="fade-up" data-aos-delay="300">
<div class="person">
<img src="images/Garvit.jpg" alt="Image" class="img-fluid">
<h3>Garvit</h3>
<p class="position">Core</p>
<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind
texts.</p>
</div>
</div>
<div class="col-lg-3 mb-4 mb-lg-0 col-md-6 text-center" data-aos="fade-up" data-aos-delay="300">
<div class="person">
<img src="images/Sajjal.jpg" alt="Image" class="img-fluid">
<h3>Sajjal</h3>
<p class="position">Core</p>
<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind
texts.</p>
</div>
</div>
<div class="col-lg-3 mb-4 mb-lg-0 col-md-6 text-center" data-aos="fade-up" data-aos-delay="300">
<div class="person">
<img src="images/Tanisha.jpg" alt="Image" class="img-fluid">
<h3>Tanisha</h3>
<p class="position">Core</p>
<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind
texts.</p>
</div>
</div>
<div class="col-lg-3 mb-4 mb-lg-0 col-md-6 text-center" data-aos="fade-up" data-aos-delay="300">
<div class="person">
<img src="images/Taranjot.jpg" alt="Image" class="img-fluid">
<h3>Taranjot</h3>
<p class="position">Core</p>
<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind
texts.</p>
</div>
</div>
<div class="col-lg-3 mb-4 mb-lg-0 col-md-6 text-center" data-aos="fade-up" data-aos-delay="300">
<div class="person">
<img src="images/Ritwik.jpg" alt="Image" class="img-fluid">
<h3>Ritwik</h3>
<p class="position">Core</p>
<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind
texts.</p>
</div>
</div>
<div class="col-lg-3 mb-4 mb-lg-0 col-md-6 text-center" data-aos="fade-up" data-aos-delay="300">
<div class="person">
<img src="images/Chahat.jpg" alt="Image" class="img-fluid">
<h3>Chahat</h3>
<p class="position">Core</p>
<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind
texts.</p>
</div>
</div>-->
</div>
</div>
</div>
<!--
sponsor section -->
<div class="site-section" id="sponsors-section">
<div class="container">
<div class="row justify-content-center text-center mb-5" data-aos="fade-up">
<div class="col-md-8 section-heading">
<h2 class="heading mb-3">Our Sponsers</h2>
<p>They have showed their faith and wisdom throughout our journey. Introducing to you our constant motivating force, our sponsors:
</p>
</div>
</div>
<div class="row">
<div class="col-lg-4 mb-4 col-md-6" data-aos="fade-up" data-aos-delay="">
<div class="ftco-feature-1" style="height:75vh;">
<span class="logo"><img border="0" src="images\sponsers\education tree.png" width="250" height=auto></span>
<div class="ftco-feature-1-text">
<h2>EDUCATION TREE</h2>
<p>Youth Community Partner</p>
</div>
</div>
</div>
<div class="col-lg-4 mb-4 col-md-6" data-aos="fade-up" data-aos-delay="100">
<div class="ftco-feature-1" style="height:75vh;">
<span class="logo"><img border="0" src="images\sponsers\time.png" width="250" height=auto></span>
<div class="ftco-feature-1-text">
<h2>TIME4EDUCATION</h2>
<p>Education Partner</p>
</div>
</div>
</div>
<div class="col-lg-4 mb-4 col-md-6" data-aos="fade-up" data-aos-delay="200">
<div class="ftco-feature-1" style="height:75vh;">
<span class="logo"><img border="0" src="images\sponsers\co campus.png" width="250" height=auto></span>
<div class="ftco-feature-1-text">
<h2>COCAMPUS</h2>
<p>Platform Partner</p>
</div>
</div>
</div>
<div class="col-lg-4 mb-4 col-md-6" data-aos="fade-up" data-aos-delay="">
<div class="ftco-feature-1" style="height:75vh;">
<span class="logo"><img border="0" src="images\sponsers\souled store.png" width="250" height=auto></span>
<div class="ftco-feature-1-text">
<h2>THE SOULED STORE</h2>
<p>Gifting Partner</p>
</div>
</div>
</div>
<div class="col-lg-4 mb-4 col-md-6" data-aos="fade-up" data-aos-delay="">
<div class="ftco-feature-1" style="height:75vh;">
<span class="logo"><img border="0" src="images\sponsers\money roller.png" width="250" height=auto></span>
<div class="ftco-feature-1-text">
<h2>THE MONEY ROLLER</h2>
<p>Education Partner</p>
</div>
</div>
</div>
<div class="col-lg-4 mb-4 col-md-6" data-aos="fade-up" data-aos-delay="100">
<div class="ftco-feature-1" style="height:75vh;">
<span class="logo"><img border="0" src="images\sponsers\notice board.png" width="250" height=auto></span>
<div class="ftco-feature-1-text">
<h2>NOTICE BOARD</h2>
<p>Partner</p>
</div>
</div>
</div>
<div class="col-lg-4 mb-4 col-md-6" data-aos="fade-up" data-aos-delay="">
<div class="ftco-feature-1" style="height:75vh;">
<span class="logo"><img border="0" src="images\sponsers\du beat.png" width="250" height=auto></span>
<div class="ftco-feature-1-text">
<h2>DU BEAT</h2>
<p>Partner</p>
</div>
</div>
</div>
<div class="col-lg-4 mb-4 col-md-6" data-aos="fade-up" data-aos-delay="">
<div class="ftco-feature-1" style="height:75vh;">
<span class="logo"><img border="0" src="images\sponsers\sp7.png" width="250" height=auto></span>
<div class="ftco-feature-1-text">
<h2>HOVERROBOTIX</h2>
<p>Partner</p>
</div>
</div>
</div>
<div class="col-lg-4 mb-4 col-md-6" data-aos="fade-up" data-aos-delay="">
<div class="ftco-feature-1" style="height:75vh;">
<span class="logo"><img border="0" src="images\sponsers\townscript.png" width="250" height=auto></span>
<div class="ftco-feature-1-text">
<h2>TOWNSCRIPT</h2>
<p>Partner</p>
</div>
</div>
</div>
<div class="col-lg-4 mb-4 col-md-6" data-aos="fade-up" data-aos-delay="">
<div class="ftco-feature-1" style="height:75vh;">
<span class="logo"><img border="0" src="images\sponsers\backpack.png" width="250" height=auto></span>
<div class="ftco-feature-1-text">
<h2>BACKPACK HIKERS</h2>
<p>Partner</p>
</div>
</div>
</div>
<div class="col-lg-4 mb-4 col-md-6" data-aos="fade-up" data-aos-delay="">
<div class="ftco-feature-1" style="height:75vh;">
<span class="logo"><img border="0" src="images\sponsers\adventure.png" width="250" height=auto></span>
<div class="ftco-feature-1-text">
<h2>CHURDHAR TOURISM</h2>
<p>Partner</p>
</div>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row justify-content-center text-center mb-5" data-aos="fade-up">
<div class="col-md-8 section-heading">
<p>We thank, appriciate and show our gratitude to our previous sponsors, whose support made our previous event great. Here are few of our past sponsers.
</p>
</div>
</div>
<div class="row">
<div class="col-lg-3 mb-4 col-md-6" data-aos="fade-up" data-aos-delay="">
<div class="ftco-feature-1" style="height: 50vh;">
<span class="icon flaticon-fit" ></span>
<div class="ftco-feature-1-text" style="overflow: hidden;">
<h2>Paytm</h2>
<img src = "images/sponsers/sp3.png" style="max-width: 100%;
max-height: 100%;
display: block;" />
</div>
</div>
</div>
<div class="col-lg-3 mb-4 col-md-6" data-aos="fade-up" data-aos-delay="">
<div class="ftco-feature-1" style="height:50vh
;">
<span class="icon flaticon-fit"></span>
<div class="ftco-feature-1-text" style="overflow: hidden;">
<h2>HackSociety</h2>
<img src = "images/sponsers/sp6.png" style="max-width: 100%;
max-height: 100%;
display: block;" />
</div>
</div>
</div>
<div class="col-lg-3 mb-4 col-md-6" data-aos="fade-up" data-aos-delay="">
<div class="ftco-feature-1" style="height: 50vh;">
<span class="icon flaticon-fit"></span>
<div class="ftco-feature-1-text" style="overflow: hidden;">
<h2>BykoJourney</h2>
<img src = "images/sponsers/sp5.png" style="max-width: 100%;
max-height: 100%;
display: block;" />
</div>
</div>
</div>
<div class="col-lg-3 mb-4 col-md-6" data-aos="fade-up" data-aos-delay="">
<div class="ftco-feature-1" style="height: 50vh;">
<span class="icon flaticon-fit"></span>
<div class="ftco-feature-1-text" style="overflow: hidden;">
<h2>Hoverrobotix</h2>
<img src = "images/sponsers/sp7.png" style="max-width: 100%;min-width: 100%;
max-height: 100%;
display: block;" />
</div>
</div>
</div>
<div class="col-lg-3 mb-4 col-md-6" data-aos="fade-up" data-aos-delay="">
<div class="ftco-feature-1" style="height: 50vh;">
<span class="icon flaticon-fit"></span>
<div class="ftco-feature-1-text" style="overflow: hidden;">
<h2>Kellogs</h2>
<img src = "images/sponsers/sp8.jpg" style="max-width: 100%;
max-height: 100%;
display: block;" />
</div>
</div>
</div>
<div class="col-lg-3 mb-4 col-md-6" data-aos="fade-up" data-aos-delay="">
<div class="ftco-feature-1" style="height: 50vh;">
<span class="icon flaticon-fit"></span>
<div class="ftco-feature-1-text" style="overflow: hidden;">
<h2>Sizzling Grills</h2>
<img src = "images/sponsers/sp9.jpg" style="max-width: 100%;
max-height: 100%;
display: block;" />
</div>
</div>
</div>
<div class="col-lg-3 mb-4 col-md-6" data-aos="fade-up" data-aos-delay="">