-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
954 lines (857 loc) · 46.7 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
<!DOCTYPE html>
<html class="wide wow-animation" lang="en" dir="ltr">
<head>
<script src="countdown.js" type="text/javascript"></script>
<script>
setTimeout(function () {
$('.main-screen').addClass('hidden');
}, 5000);
</script>
<!-- Site Title-->
<title>Aarohan 2022</title>
<meta name="viewport"
content="width=device-width, height=device-height, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<meta charset="utf-8">
<meta name="description" content='A commingle series of meticulous activities, from steamy cultural manoeuvre to smashing sport pursuit, Aggregating it into the most momentous and noteworthy event.
Aarohan 2022 " Relish, Relive & Recreate"'>
<meta name="title" content="Aarohan 2022 - Poornima Group of Colleges">
<!-- Stylesheets-->
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css2?family=Monoton&display=swap">
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/fonts.css">
<link rel="stylesheet" href="css/style.css" id="main-styles-link">
</head>
<body>
<div class="preloader loaded">
<div class="preloader-body">
<div class="cssload-container">
<div class="cssload-speeding-wheel"></div>
</div>
<p>Big things take time<br>
have some patience</p>
</div>
</div>
<div class="page">
<div class="main-screen">
<justify>
<h1 class="main-heading">POORNIMA AAROHAN <br>
<center>2022</center>
</h1>
</justify>
<p style="font-size: 20px;">Tap to continue!</p>
</div>
<!-- Swiper-->
<section class="section swiper-container swiper-slider" data-loop="false" data-autoplay="false"
data-simulate-touch="false" data-mousewheel="true" data-parallax="true">
<div class="parallax-bg" style="background-image:url(images/background-05.jpg);" data-swiper-parallax="-23%">
</div>
<div class="swiper-wrapper text-center">
<!--home-->
<div class="swiper-slide content video-bg-overlay vide_bg" data-vide-bg="video/video-lg"
data-vide-options="posterType: jpg, muted: true"
data-title="<span class="swiper-pagination-title">Home</span><span class="fa-home swiper-pagination-icon"></span>">
<div class="parallax-scene container-screen">
<div class="layer container-screen container-screen-top parallax-scene-img-height parallax-scene-mobile"
data-depth="0.04" style="opacity: 1; filter: blur(3px);"><img src="images/home-04.png" alt=""></div>
<div class="layer container-screen container-screen-top parallax-scene-img-height parallax-scene-mobile"
data-depth="0.1" style=" filter: blur(1.5px);"><img src="images/home-03.png" alt=""></div>
<div class="layer container-screen container-screen-top parallax-scene-img-height" data-depth="0.25"><img
src="images/home-01.png" alt=""></div>
<div class="layer container-screen container-screen-top parallax-scene-img-height" data-depth="0.1"><img
src="images/home-02.png" alt=""></div>
</div>
<div class="swiper-slide-caption section-md">
<div class="container">
<div class="row justify-content-lg-center">
<div class="col-lg-8">
<div class="main-page-box">
<center>
<div class="logo"
style="display: flex; width: 16vw; justify-content: center; border-bottom: solid purple 2px; padding-bottom: 1rem;">
<img src="images/aarohan.png" width="60px" height="40px">
<img src="images/logo.png" width="60px" height="40px">
</div>
</center>
<h1 data-swiper-parallax="-5000" data-swiper-parallax-opacity="0"
style="transform: translate3d(0px, 0px, 0px); font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;">
POORNIMA AAROHAN 2022</h1>
<h1 data-swiper-parallax="-4000" data-swiper-parallax-opacity="0"
style="transform: translate3d(0px, 0px, 0px); font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; font-size: 30px"
;>Relish, Relive & Recreate</h1>
<!--hr-->
<p class="subtitle" data-swiper-parallax="-3000" data-swiper-parallax-opacity="0"
style="transform: translate3d(0px, -395px, 0px);"><span class="font-weight-bold">FEBRUARY
17</span>
<span class="font-weight-normal">2022 </span>
</p>
</div>
</div>
</div>
<br>
<center>
<div id="countdown">
<script type="application/javascript">
const currentYear = new Date().getFullYear();
const newYearTime = new Date(`February 17 ${currentYear} 00:00:00`);
function updateCountdown() {
const currentTime = new Date();
const diff = (newYearTime - currentTime) / 1000;
const d = Math.floor(diff);
return d;
}
var myCountdown1 = new Countdown({
time: updateCountdown(), // 86400 seconds = 1 day
width: 300,
height: 60,
rangeHi: "day",
style: "flip" // <- no comma on last item!
});
setInterval(updateCountdown, 1000);
</script>
</div>
</center>
</div>
</div>
</div>
<!--about-->
<!--about-->
<div style="margin-right: 20%;" class="swiper-slide context-dark"
data-title="<span class="swiper-pagination-title">About Us</span><span class="fa-user swiper-pagination-icon"></span>">
<div class="parallax-scene container-screen">
<div class="layer container-screen" data-depth="0.3"><img src="images/about-02.png" alt=""></div>
<div class="layer container-screen parallax-scene-img-height" data-depth="0.1"><img
src="images/about-01.png" alt=""></div>
</div>
<div class="swiper-slide-caption" data-swiper-parallax="-1000" data-swiper-parallax-opacity="0">
<div class="container">
<div class="row justify-content-center">
<div class="col-12 col-lg-8">
<div class="row row-20 justify-content-center justify-content-lg-start align-items-lg-center">
<div class="col-md-8 col-lg-6 col-xl-5 col-xxl-5">
<div class="content-box bg-secondary index-1 pl-xxl-5 pr-xxl-5" data-swiper-parallax="-1000"
data-swiper-parallax-opacity="0">
<h4>About us</h4>
<p>Poornima Aarohan 2022 is the significant College fest conducted by Poornima group of
Colleges.<br><br>
It is a commingle of the series of meticulous activities likely steamy cultural manoeuvre,
amusing club activities, smashing sport pursuit, aggregating it into the most momentous and
noteworthy event.</p><a class="button button-white" href="#" data-toggle="modal"
data-target="#modal-about-us">more</a>
</div>
</div>
<div class="col-md-8 col-lg-6 col-xl-6 col-xxl-4">
<div class="content-box bg-accent text-lg-left content-box-carousel" data-swiper-parallax="-2000"
data-swiper-parallax-opacity="0">
<div id="carouselExampleControls" class="image-changer carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img class="d-block w-100" src="/images/Gallery/1.webp" alt="First slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="/images/Gallery/2.webp" alt="Second slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="/images/Gallery/3.webp" alt="Third slide">
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleControls" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleControls" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--activities-->
<div class="swiper-slide context-dark"
data-title="<span class="swiper-pagination-title">Activities & Events</span><span class="fa-calendar swiper-pagination-icon"></span>">
<div class="parallax-scene container-screen">
<div class="layer container-screen parallax-scene-img-height" data-depth="0.05"><img
src="images/news-01.jpg" alt=""></div>
</div>
<div class="swiper-slide-caption" data-swiper-parallax="-1000" data-swiper-parallax-opacity="0">
<div class="container">
<div class="row row-20 justify-content-center">
<div class="col-md-8 col-lg-3 col-xl-4 col-xxl-3 order-lg-2" data-swiper-parallax="-1000"
data-swiper-parallax-opacity="0">
<div class="mt-lg-5">
<strong>
<b>
<h4 style="font-weight: bolder;">Activities <br class="d-none d-lg-inline-block">and <br
class="d-none d-lg-inline-block">Events
</b>
</h4>
</strong>
</div>
</div>
<div class="col-md-8 col-lg-4 col-xl-3 order-lg-1" data-swiper-parallax="-1500"
data-swiper-parallax-opacity="0">
<div class="content-box-hexagon-container">
<div class="content-box-hexagon hexagon-secondary-3"><span></span></div>
<div class="content-box-hexagon-inner pl-md-5 pr-md-5 pl-lg-2 pr-lg-2 pl-xxl-5 pr-xxl-5">
<div class="content-box-hexagon-container">
<div class="content-box-hexagon hexagon-secondary-3"><span></span></div>
<div class="content-box-hexagon-inner pl-md-5 pr-md-5 pl-lg-2 pr-lg-2 pl-xxl-5 pr-xxl-5">
</div>
</div>
<a href="#" data-toggle="modal" data-target="#technophilia-about-us">
<h4><u>Technophilia</h4></u>
</a>
<br>
<a href="#" data-toggle="modal" data-target="#sports-about-us">
<h4 class="hexagon-setter"><u>Sports Mania</h4></u>
</a>
<br>
<a href="#" data-toggle="modal" data-target="#club-about-us">
<h4><u>Club Event</h4></u>
</a>
</div>
</div>
</div>
<div class="col-md-8 col-lg-4 col-xl-3 text-lg-left order-lg-3" data-swiper-parallax="-2000"
data-swiper-parallax-opacity="0">
<div class="content-box-hexagon-container">
<div class="content-box-hexagon hexagon-secondary-3"><span></span></div>
<div class="content-box-hexagon-inner pl-md-5 pr-md-5 pl-lg-2 pr-lg-2 pl-xxl-5 pr-xxl-5"
style="text-align: center;">
<div class="content-box-hexagon-container">
<div class="content-box-hexagon hexagon-secondary-3"><span></span></div>
<div class="content-box-hexagon-inner pl-md-5 pr-md-5 pl-lg-2 pr-lg-2 pl-xxl-5 pr-xxl-5">
</div>
</div>
<a href="#" data-toggle="modal" data-target="#cult-about-us">
<h4><u>Cult-Gala</h4></u>
</a>
<br>
<a href="#" data-toggle="modal" data-target="#recreating-about-us">
<h4 class="hexagon-setter"><u>RECREATING MOMENTS</h4></u>
</a>
<br>
<a href="#" data-toggle="modal" data-target="#celebrity-about-us">
<h4><u>Celebrity nights</h4></u>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Sponsors-->
<div class="swiper-slide content video-bg-overlay vide_bg" data-depth="0.05"
data-vide-options="posterType: jpg, muted: true"
data-title="<span class="swiper-pagination-title">Sponsors</span><span class="fa-compact-disc swiper-pagination-icon"></span>">
<img class="sponsors_img" src="/images/sponsors1.webp">
<div class="container">
<div class="row text-md-left">
<div class="col-md-10 col-xl-7">
<div class="offer-box">
<div class="sponsorsand faqs-heading offer-box-subheading text-md-left" data-swiper-parallax="-3000"
data-swiper-parallax-opacity="0" style="color: white; font-size: 6vh; line-height: 1.6em;">Our sponsors</div>
</div>
</div>
</div>
</div>
</div>
<!--Register-->
<div class="swiper-slide context-dark swiper-content-bottom"
data-title="<span class="swiper-pagination-title">Register</span><span class="fa-cloud-download swiper-pagination-icon"></span>">
<div class="parallax-scene container-screen">
<div class="layer container-screen parallax-scene-img-height" data-depth="0.05"><img
src="images/register-bg.jpg" alt=""></div>
</div>
<div class="swiper-slide-caption" data-swiper-parallax="-1000" data-swiper-parallax-opacity="0">
<div class="container section-lg">
<div class="row justify-content-lg-center">
<div class="col-lg-8">
<!-- Owl Carousel-->
<div class="owl-carousel" data-items="1" data-dots="false" data-nav="true" data-stage-padding="15"
data-loop="false" data-margin="60" data-mouse-drag="false">
<div class="download-box-inner">
<ul class="list-tracks">
<li>
<section class="ftco-section img bg-hero">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-11">
<div class="wrapper">
<div class="form-box row no-gutters justify-content-between abc">
<div class="col-lg-8">
<div class="contact-wrap w-100 p-md-5 p-4">
<h3 class="register-heading mb-4">Register Now!</h3>
<div id="form-message-warning" class="mb-4"></div>
<!-- <div id="form-message-success" class="mb-4">
Your message was sent, thank you!
</div> -->
<form id="myForm">
<label for="name">Name</label><br>
<input type="text" required name="name" id="name">
<label for="phone">Contact Number</label><br>
<input type="tel" required name="phone" id="phone">
<br>
<label for="email">College Email</label><br>
<input type="email" required name="email" id="email">
<label for="reg">Registration Number</label><br>
<input type="text" required name="reg" style="text-transform:uppercase;"
id="reg">
<br>
<label for="gender">Gender : </label>
<label for="gender">Male</label>
<input type="radio" name="gender" checked value="M" id="genderM">
<label for="gender">Female</label>
<input type="radio" name="gender" value="F" id="genderF">
<br>
<button type="submit" class="btn btn-light col-lg-6 col-4"
value="send">Submit</button>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--FAQs-->
<div class="swiper-slide content video-bg-overlay vide_bg" data-depth="0.05"
data-vide-options="posterType: jpg, muted: true"
data-title="<span class="swiper-pagination-title">FAQs</span><span class="fa-circle-question swiper-pagination-icon"></span>">
<div class="container" style="text-align: left; font-size: 90%;">
<div class="faqs-text">
<b>Q1. Who can attend AAROHAN 2022?</b><br>
<i>Ans.</i> All the current students belonging to Poornima Group of Colleges can attend.<br><br>
<b>Q2. Is there any entry fee?</b><br>
<i>Ans.</i> NO, There is no entry fee. But you must carry your Poornima ID card as a proof.<br><br>
<b>Q3. What is my Aarohan ID?</b><br>
<i>Ans.</i> You will get a unique ID of the form 2022PAXXXX on your mail ID after succesfully registering. This is your Aarohan ID which will be used to identify yourself while attending Aarohan 2022. Please note this ID.<br><br>
<b>Q4. What will be the timings of the event?</b><br>
<i>Ans.</i> All the events and activities will take place from 9AM onwards to 9PM <br><br>
<b>Q5. Can we participate in more than one activity?</b><br>
<i>Ans.</i> YES, You can participate in as many activities you like just make sure that they don't
collide.<br><br>
<b>Q6. How to register for activities/events?</b><br>
<i>Ans.</i> All the students who want to participate, has to register through website first, then you will get your unique Aarohan ID on the provided E-mail using which you can fill out the google forms.<br>
</div>
<div class="offer-box-subheading text-md-right" data-swiper-parallax="-3000"
data-swiper-parallax-opacity="0" style="color: white; font-size: 60px;">FAQs</div>
</div>
</div>
<!--Contact Us-->
<div class="swiper-slide context-dark"
data-title="<span class="swiper-pagination-title">Contact Us</span><span class="fa-phone swiper-pagination-icon"></span>">
<div class="parallax-scene container-screen">
<div class="layer container-screen parallax-scene-img-height" data-depth="0.01" style="opacity: 1;"></div>
</div>
<div class="swiper-slide-caption" data-swiper-parallax="-2000" data-swiper-parallax-opacity="0">
<div class="container">
<div class="row justify-content-center">
<div class="col-12 col-lg-8">
<div class="row row-20 justify-content-center justify-content-lg-between align-items-center">
<div class="col-md-8 col-lg-5 col-xl-4 col-xxl-4">
<div class="content-box bg-accent index-1 pl-xxl-5 pr-xxl-5 contact-box">
<address>Poornima Group of Colleges</address>
<ul>
<li><span>PCE Chair-Students' Council:</span> <a href="tel:+917014024972">7014024972</a>
</li>
<li><span>PIET Chair-Students' Council:</span> <a href="tel:+919079320574">9079320574</a></li>
<li><span>Contact Developer:</span> <a href="tel:+919413465367">9413465367</a></li>
<li><span>E-mail:</span> <a class="text-secondary-4"
href="mailto:[email protected]">[email protected]</a>
</li>
</ul><a class="button button-white button-lg" href="#" data-toggle="modal"
data-target="#appointment">contact</a>
</div>
</div>
<div class="col-md-8 col-lg-5 col-xl-4 col-xxl-4">
<div class="content-box content-box-map">
<div class="google-map-container">
<div class="google-map">
<h1 style="color: white; font-size: 3vh;">
<> with ❤️ by
<div class="coder" style="font-weight: bolder;">
<br>
<b><h2 style="font-size: 1.15Rem;">Yuvraj Dagur</h2></b>
<h2 style="font-size: .8Rem;">3rd Year (PIET)</h2>
<h2 style="font-size: 1.15Rem;">Rachit Agarwal</h2>
<h2 style="font-size: .8Rem;">2nd Year (PIET)</h2>
<h2 style="font-size: 1.15Rem;">Darshil Jain</h2>
<h2 style="font-size: .8Rem;">2nd Year (PIET)</h2>
<b><h2 style="font-size: 1.15Rem;">Kunal Sharma</h2></b>
<h2 style="font-size: .8Rem;">1st Year (PIET)</h2>
</div>
</div>
<ul class="google-map-markers">
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Swiper Pagination -->
<div class="navigation">
<div class="container">
<div class="swiper-pagination" data-index-bullet="true"></div>
<ul class="list-inline">
<li><a class="icon icon-xxs icon-gray icon-circle fa fa-instagram" href="https://bit.ly/aarohanpoornima"
target="_blank" style="background-color: rgb(235, 2, 157)"></a></li>
<li><a class="icon icon-xxs icon-gray icon-circle fa fa-facebook" href="https://bit.ly/AarohanFacebook"
target="_blank" style="background-color: royalblue;"></a></li>
<li><a class="icon icon-xxs icon-gray icon-circle fa fa-youtube"
href="https://bit.ly/PoornimaAarohanYoutube" target="_blank" style="background-color: crimson;"></a>
</li>
</ul>
</div>
</div>
</section>
<div class="modal fade" id="technophilia-about-us" tabindex="-1" role="dialog" aria-hidden="true"
data-backdrop="false">
<div class="modal-custom-inner">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="content-box">
<div class="container">
<div class="row justify-content-center">
<div class="col-10 col-lg-8 col-xl-6"><a class="close close-modal-content-box" href="#"
data-dismiss="modal">x</a>
<h3>More About <br class="d-none d-md-inline-block"> Technophilia</h3>
<div>
<p>
“Technology like art is a soaring exercise of the human imagination” <br>
Determining the imagination we present Technophillia, a techy-bendy squeezy peezy one stop place
to all the tech competitions.<br>
It includes competitions:
<br>
</p>
<p>
-> Life Wire 2.0 “Circuitry”<br>
-> NFS 2.0 “Robo Race”<br>
-> Messi World 2.0 “Robo Soccer”<br>
-> Combat Bots “Robo War”<br>
-> Codex 2.O "Coding competition<br>
-> Tech-Quizite<br>
-> Bug bounty “Debugging”<br>
-> Shaark-Tank Poornima <br>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="modal fade" id="sports-about-us" tabindex="-1" role="dialog" aria-hidden="true" data-backdrop="false">
<div class="modal-custom-inner">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="content-box">
<div class="container">
<div class="row justify-content-center">
<div class="col-10 col-lg-8 col-xl-6"><a class="close close-modal-content-box" href="#"
data-dismiss="modal">x</a>
<h3>More About <br class="d-none d-md-inline-block"> Sports Mania</h3>
<p>"Challenging the self, By keeping the soul awake.
Champions work to ignite the fire, Working with a spirit that aspires.."<br>
Having the spirit of turning efforts into achievements when life acts as an opponent to which we
have to show the victory. So, here we are testing your patience and leadership skills with various
activities. Bring your teams, play with us and let’s win it together with lots of enthusiasm and
sportsperson attitude.<br>
Sports will be filled with exciting activities and contests like:<br>
-> Volley Ball (Boys & Girls)<br>
-> Box Cricket Competition (Mix) <br>
-> Check & Mate <br>
-> Table Tenis (Boys & Girls) <br>
-> Man of Steel (Boys) "Weight Lifting"<br>
-> 100m (Boys & Girls)<br>
-> 200m (Girls)/400m (Boys)<br>
-> 4*100m Relay (Boys & Girls)<br>
-> Arm Wrestling (Boys & Girls)<br>
-> Tug of War (Boys & Girls)<br>
-> Shotput (Boys & Girls)<br>
-> Long Jump (Boys & Girls)<br>
-> Badminton (Boys & Girls)<br>
-> Kabbadi (Boys)<br>
-> Kho-kho (Girls)<br>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="modal fade" id="club-about-us" tabindex="-1" role="dialog" aria-hidden="true" data-backdrop="false">
<div class="modal-custom-inner">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="content-box">
<div class="container">
<div class="row justify-content-center">
<div class="col-10 col-lg-8 col-xl-6"><a class="close close-modal-content-box" href="#"
data-dismiss="modal">x</a>
<h3>More About <br class="d-none d-md-inline-block"> Club Event</h3>
<p>Club events involve the participation of various clubs who enthusiastically organise various
activities and empower the students to participate and develop themselves in various fields.
Events of numerous types are brought together to share some amazing hobbies with an aim to
celebrate every single second. The various activities involved in the club events are:<br>
<p>
->Atrium "Open Stage" <br>
->Cosmic 2.0 "BGMI Mobile"<br>
->Cosmic 2.0 "Valorant"<br>
->Shutter Candid "Photography"<br>
->Hotrods "Go-Kart Comp."<br>
->Sky Magic "Air Show"<br>
->Aagaaz "Nukkad Natak"<br>
</p>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="modal fade" id="cult-about-us" tabindex="-1" role="dialog" aria-hidden="true" data-backdrop="false">
<div class="modal-custom-inner">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="content-box">
<div class="container">
<div class="row justify-content-center">
<div class="col-10 col-lg-8 col-xl-6"><a class="close close-modal-content-box" href="#"
data-dismiss="modal">x</a>
<h3>More About <br class="d-none d-md-inline-block"> Cult Gala</h3>
<p>Culture is identity, culture is unique in the world as diamond in a coal mine. Cultural events
are organised with the idea of everyone under one umbrella to celebrate the potential and
uniqueness of every artist. Be the part of diverse arts which includes:<br>
<p>
->Step up "Dance performance"<br>
->Tune It Up "Band performance"<br>
->Panache "Fashion Walk"<br>
->Flash Mob<br>
</p>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="modal fade" id="recreating-about-us" tabindex="-1" role="dialog" aria-hidden="true"
data-backdrop="false">
<div class="modal-custom-inner">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="content-box">
<div class="container">
<div class="row justify-content-center">
<div class="col-10 col-lg-8 col-xl-6"><a class="close close-modal-content-box" href="#"
data-dismiss="modal">x</a>
<h3>More About <br class="d-none d-md-inline-block"> Recreational Moments</h3>
<p>
Recreational Moments is the cluster of many fun activities like Antakshari, Treasure Hunt, Tattoo
Painting, Jamming, Reels, If you laugh you lose, Carnival Street and Cycle Stunt.These will be the
moments which will be filled with joy and splendour to the brim.<br>
<p>
-> Play With songs 'Antakshari'<br>
-> Treasure hunt<br>
-> Inked Souls 'Tatto Painting'<br>
-> MTB Stunt Rider 'Cycle Show'<br>
-> Road Rusher 'Bike Show'<br>
-> If you laugh you lose<br>
-> Jamming<br>
-> Reel-O-Tribe 'Reel Competition'<br>
-> Carnival street<br>
</p>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="modal fade" id="celebrity-about-us" tabindex="-1" role="dialog" aria-hidden="true"
data-backdrop="false">
<div class="modal-custom-inner">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="content-box">
<div class="container">
<div class="row justify-content-center">
<div class="col-10 col-lg-8 col-xl-6"><a class="close close-modal-content-box" href="#"
data-dismiss="modal">x</a>
<h3>More About <br class="d-none d-md-inline-block"> Beatz On Fire</h3>
<p>
A steamy bash all set to drown yourself in the immense flow of music and crazy tunes which will
make you experience the vibes you never felt before.<br>
Enjoy EDM night with fantastic DJs and our star performers for the event. <br>
->17th Feb : DJ Night :- Harsh Bhutani<br>
->18th Feb : EDM night – Pro Brothers<br>
->19th Feb : Celeb night – Jass Manak<br>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="modal fade" id="modal-about-us" tabindex="-1" role="dialog" aria-hidden="true" data-backdrop="false">
<div class="modal-custom-inner">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="content-box">
<div class="container">
<div class="row justify-content-center">
<div class="col-10 col-lg-8 col-xl-6"><a class="close close-modal-content-box" href="#"
data-dismiss="modal">x</a>
<h3>More<br class="d-none d-md-inline-block"> About Us</h3>
<p>It’s going to be noteworthy event and we hope everyone will celebrate the spirit of adventure and
exploration and immerse into the magic of this steamy bashment . A mix of soulful voices, flashy
lights and excited screams that binds the crowd together as we set into this celebration. You will
find yourself waving your heads in the air with the happiest smile etched on your face as you sing
along , sharing the excitement and love for the moment as everyone else. <br><br>
“Always ready for a good concert, great friends and cold drinks”<br><br>
Gear yourself for some amazing fun and amusing activities we are going to have charming dance and
other beautiful cultural events into the bargain. Accumulate your zeal and enthusiasm for some
mindblowing sports .Sharpen and train your brain for some ingenious technical events and buckle
your belt to live the most glorious time of your life.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="modal fade" id="modal-gallary" tabindex="-1" role="dialog" aria-hidden="true" data-backdrop="false">
<div class="modal-custom-inner">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="content-box">
<div class="container">
<div class="row justify-content-center">
<div class="col-10 col-lg-8 col-xl-6"><a class="close close-modal-content-box" href="#"
data-dismiss="modal">x</a>
<h3>More<br class="d-none d-md-inline-block"> About Us</h3>
<p>It’s going to be noteworthy event and we hope everyone will celebrate the spirit of adventure and
exploration and immerse into the magic of this steamy bashment . A mix of soulful voices, flashy
lights and excited screams that binds the crowd together as we set into this celebration. You will
find yourself waving your heads in the air with the happiest smile etched on your face as you sing
along , sharing the excitement and love for the moment as everyone else. <br><br>
“Always ready for a good concert, great friends and cold drinks”<br><br>
Gear yourself for some amazing fun and amusing activities we are going to have charming dance and
other beautiful cultural events into the bargain. Accumulate your zeal and enthusiasm for some
mindblowing sports .Sharpen and train your brain for some ingenious technical events and buckle
your belt to live the most glorious time of your life.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="modal fade" id="single-event" tabindex="-1" role="dialog" aria-hidden="true" data-backdrop="false">
<div class="modal-custom-inner">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="content-box">
<div class="container">
<div class="row justify-content-center">
<div class="col-10 col-lg-8 col-xl-6"><a class="close close-modal-content-box" href="#"
data-dismiss="modal">x</a>
<h3>Single Event</h3>
<p>Dastqui dolorem ipsumquia dolsitmet conse tequam eius. Asmodi tempora incid. Dent ut labore t
dolore magnam. Naliquam quae. Rat voleneni ullam corporis suscipit labasic ut aliquidea commodi
consequatur. Aquis autem vel eum iure reprehenderit, muytasas dresasaser. Esse, quam nihil
molestiae consequatur, vel illum. Dastqui dolorem ipsumquia dolsitmet conse tequam eius. Asmodi
tempora incid. Dent ut labore t dolore magnam. Naliquam quae.</p>
<p>Rat voleneni ullam corporis suscipit labasic ut aliquidea commodi consequatur. Aquis autem vel
eum iure reprehenderit. Asas dresasaser. Esse, quam nihil molestiae consequatur, vel illum.
Dastqui dolorem ipsumquia dolsitmet conse tequam eius. Asmodi tempora incid. Dent ut labore t
dolore magnam. Naliquam quae. Rat voleneni ullam corporis suscipit labasic ut aliquidea commodi
consequatur. Aquis autem vel eum iure reprehenderit, muytasas dresasaser. Esse, quam nihil
molestiae consequatur, vel illum. Dastqui dolorem ipsumquia dolsitmet conse tequam eius. Asmodi
tempo. Asas dresasaser. Esse, quam nihil molestiae consequatur, vel illum. Dastqui dolorem
ipsumquia dolsitmet conse tequam eius. Asmodi tempora incid. Dent ut labore t dolore magnam.
Naliquam quae. Rat voleneni ullam corporis suscipit labasic ut aliquidea</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="modal fade" id="appointment" tabindex="-1" role="dialog" aria-hidden="true" data-backdrop="false">
<div class="modal-custom-inner">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="content-box">
<div class="container">
<div class="row justify-content-center">
<div class="col-10 col-lg-4"><a class="close close-modal-content-box" href="#"
data-dismiss="modal">x</a>
<h3>Contact Form</h3>
<!-- RD Mailform-->
<form class="rd-mailform text-left" data-form-output="form-output-global" data-form-type="contact"
method="post" action="bat/rd-mailform.php">
<div class="row row-20">
<div class="col-12">
<div class="form-wrap">
<label class="form-label" for="contact-name">Name</label>
<input class="form-input" id="contact-name" type="text" name="name"
data-constraints="@Required">
</div>
</div>
<div class="col-12">
<div class="form-wrap">
<label class="form-label" for="contact-email">E-Mail</label>
<input class="form-input" id="contact-email" type="email" name="email"
data-constraints="@Required @Email">
</div>
</div>
<div class="col-12">
<div class="form-wrap">
<label class="form-label" for="contact-message">Message</label>
<textarea class="form-input" id="contact-message" name="message"
data-constraints="@Required"></textarea>
</div>
</div>
<div class="col-12">
<div class="form-button group-sm text-center text-lg-left">
<button class="button button-primary" type="submit">Send</button>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- PANEL-->
<!-- END PANEL-->
<!-- Global Mailform Output-->
<div class="snackbars" id="form-output-global"></div>
<!-- Javascript-->
<script src="js/core.min.js"></script>
<script src="js/script.js"></script>
<script>
function validateForm() {
let email = document.getElementById("email").value.toUpperCase();
let phone = document.getElementById("phone").value;
let reg = document.getElementById("reg").value.toUpperCase();
let year_e = email.slice(0,4);
let year_e2 = year_e.slice(-2);
let year_camp = reg.slice(4,6);
let year_camp2 = reg.slice(3,5);
let camp_e = email.slice(4,8);
let camp_e2 = email.slice(4,7);
let camp_reg = reg.slice(0,4);
let camp_reg2 = reg.slice(0,3);
let name = document.getElementById("name").value;
if (email.slice(-13) != "@POORNIMA.ORG") {
return false;
} else if (phone.length != 10) {
return false;
} else if (year_e != "2021" && year_e != "2020" && year_e != "2019" && year_e != "2018"){
return false;
} else if (camp_reg != "PIET" && camp_reg2 != "PCE" && camp_reg2 != "PGI"){
return false;
} else if (camp_e != camp_reg && camp_e2 != camp_reg2){
return false;
} else if (camp_e != "PIET" && camp_e2 != "PCE" && camp_e2 != "PGI"){
return false;
} else if (year_e2 != year_camp && year_e2 != year_camp2){
return false;
} else {
return true;
}
}
window.addEventListener( "load", function () {
function sendData() {
const XHR = new XMLHttpRequest();
// Bind the FormData object and the form element
const FD = new FormData( form );
// Define what happens on successful data submission
XHR.addEventListener( "load", function(event) {
alert( event.target.responseText );
document.getElementById("myForm").reset();
} );
// Define what happens in case of error
XHR.addEventListener( "error", function( event ) {
alert( 'Oops! Something went wrong.' );
} );
// Set up our request
XHR.open( "POST", "https://yuvrajdagur.pythonanywhere.com/api/v1/resources/aarohan" );
// The data sent is what the user provided in the form
XHR.send( FD );
}
// Access the form element...
const form = document.getElementById( "myForm" );
// ...and take over its submit event.
form.addEventListener( "submit", function ( event ) {
let email = document.getElementById("email").value;
let phone = document.getElementById("phone").value;
let reg = document.getElementById("reg").value;
var gender = "";
if(document.getElementById('genderM').checked == true) {
gender = "Male";
} else {
gender = "Female";
}
let name = document.getElementById("name").value;
event.preventDefault();
if(validateForm()){
let confimation = confirm(`You entered the details: \nName: ${name}\nPhone: ${phone}\nEmail: ${email}\nRegistration Number: ${reg}\nGender: ${gender}\nARE YOU SURE?`)
if(confimation==true){
sendData();
}
else{
}
}else{
alert("Wrong Input, Please check again");
}
} );
} );
</script>
<script src="https://kit.fontawesome.com/1f76e4cb60.js" crossorigin="anonymous"></script>
</body>
</html>