-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
1122 lines (981 loc) · 44.6 KB
/
index.php
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>PULZION 19</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<link rel="icon" href="img/1.png" type="image/x-icon"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src='http://code.jquery.com/jquery-1.9.1.js'></script>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.0/css/all.css" integrity="sha384-lZN37f5QGtY3VHgisS14W3ExzMWZxybE1SJSEsQp9S+oqd12jhcu+A56Ebc1zFSJ" crossorigin="anonymous">
<link rel="stylesheet" href="css/bootstrap.min.css">
<script src="js/jquery.js"></script>
<script src="js/bootstrap.min.js"></script>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-23581568-13"></script>
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="animate.css">
<link rel="stylesheet" type="text/css" href="hamburgers.min.css">
<link rel="stylesheet" type="text/css" href="select2.min.css">
<link rel="stylesheet" type="text/css" href="util.css">
<link rel="stylesheet" type="text/css" href="main.css">
<script type="text/javascript" src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
<script type="text/javascript" src="http://code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
<link rel="stylesheet" type="text/css" href="css/normalize.css" />
<link rel="stylesheet" type="text/css" href="css/demo.css" />
<script>document.documentElement.className = 'js';</script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css">
<link rel="stylesheet" href="home-ani.css">
<script src='https://code.jquery.com/jquery-2.2.4.min.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/gsap/1.18.4/TweenMax.min.js'></script>
<link rel="stylesheet" type="text/css" href="slick/slick.css"/>
<link rel="stylesheet" type="text/css" href="slick/slick-theme.css"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="plugins/jquery.waypoints.min.js"></script>
<script src="plugins/jquery.counterup.min.js"></script>
<script src="https://code.jquery.com/jquery-1.12.2.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/waypoints/4.0.0/jquery.waypoints.min.js"></script>
<script src="plugins/jquery.counterup.js"></script>
<script type="text/javascript" src="slick/slick.min.js"></script>
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
<script>
$(document).ready(function() {
$('.counter').counterUp({
delay: 10,
time: 300
});
});
$(document).ready(function(){
// Add smooth scrolling to all links
$("a").on('click', function(event) {
// Make sure this.hash has a value before overriding default behavior
if (this.hash !== "") {
// Prevent default anchor click behavior
event.preventDefault();
// Store hash
var hash = this.hash;
// Using jQuery's animate() method to add smooth page scroll
// The optional number (800) specifies the number of milliseconds it takes to scroll to the specified area
$('html, body').animate({
scrollTop: $(hash).offset().top -95
}, 1000, function(){
// Add hash (#) to URL when done scrolling (default click behavior)
});
} // End if
});
});
</script>
<link href="https://fonts.googleapis.com/css?family=Orbitron&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Quantico&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Cutive+Mono&display=swap" rel="stylesheet">
</head>
<script>
/*PRELOADER....................................*/
setTimeout(function(){
$('#loading').fadeOut();
$('.main').delay(175);
},2900);
/*PRELOADER ENDS..............................*/
/*change navbar colour on scroll...................*/
/*$(document).ready(function(){
$(window).scroll(function(){
if($(window).scrollTop() > $(window).height()){
$(".fixed-top").css({"background-color":"black"});
}
else{
$(".fixed-top").css({"background-color":"transperent"});
$(".fixed-top").css({"text-decoration-color":" "});
}
})
});
*/
//hide navbar on click
/*$('.navbar-nav>li>a').on('click', function(){
$('.collapse').collapse('hide');
});*/
/*About us page................*/
$(document).ready(function(){
/*FILTER/CARDS PAGES JS************************************/
var filterBtns = $('.filter-btn');
var cards = $('.card');
filterBtns.click(function(event){
/*Takes care of highlighting current filter*/
event.preventDefault();
$('.selected').removeClass('selected');
$(this).addClass('selected');
/*Takes care of showing correct cards*/
var currentFilter = $(this).attr('data-filter');
if(currentFilter === 'all'){
jQuery.each(cards, function(i, v){
$(this).show();
});
}
else{
jQuery.each(cards, function(i, v){
/*If statement checks if any of the filters are in the currentFilter*/
if(v.getAttribute('data-filter').indexOf(currentFilter) >= 0){
$(this).show();
}
else{
$(this).hide();
}
});
}
});
/*Takes care of cutting extra chars from cards*/
var bodyText = $('.card-body');
bodyText.each (function () {
$(this).text( $(this).attr('data-short-text') );
});
/*Takes care of expanding card when more info is clicked*/
var moreLinks = $('.more-link');
moreLinks.click(function(event){
var cardClicked = $(this).parents('.card');
var textContainer = cardClicked.find('.card-text-container');
var cardClickText = cardClicked.find('.card-body');
var locationInfo = cardClicked.find('p.card-location');
/*Checks to see if card is already open*/
if($(this).html() === 'Back'){
if($(window).width() >= 768){
$("html, body").animate({ scrollTop: 400 }, "slow");
}
cardClickText.text(cardClickText.attr('data-short-text'));
locationInfo.fadeOut('easeOutExpo');
cardClicked.css({
'width': '300px',
'height' : '500px',
'margin' : '10px',
'display': 'inline-block'
});
cardClicked.find('.card-img-container').css({
'height' : '200px'
});
$(this).html('More Info');
textContainer.removeClass('expanded');
}
/*If it isnt open, then depending on device transform width and height or just height*/
else{
$(this).html('Back');
cardClickText.text(cardClickText.attr('data-orig-text'));
locationInfo.fadeIn('easeInQuint');
var pos = cardClicked.position();
/*If desktop*/
if($( window ).width() >= 768){
cardClicked.css({
'display': 'block',
'margin' : '0 auto',
'width': '750px',
'height' : '700px'
});
cardClicked.find('.card-img-container').css({
'height' : '350px'
});
}
/*If mobile*/
else if(($( window ).width() <= 450) && ($( window ).width() > 375)){
cardClicked.css('height', '1125px');
}
else if($( window ).width() <= 375 && ($( window ).width() > 360)){
cardClicked.css('height', '1175px');
}
else if($( window ).width() <= 360 && ($( window ).width() >340)){
cardClicked.css('height', '1250px');
}
else if($( window ).width() <= 340 && ($( window ).width() >320)){
cardClicked.css('height', '1300px');
}
else{
cardClicked.css('height', '1125px');
}
textContainer.addClass('expanded');
// $("html, body").animate({ scrollTop: pos.top + 900 }, "slow");
}
});
/**/
});
/*About us ends here...............................*/
/*SPONSERS PAGE....................................*/
$('.js-tilt').tilt({
scale: 1.1
})
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-23581568-13');
(function ($) {
"use strict";
/*==================================================================
[ Validate ]*/
var name = $('.validate-input input[name="name"]');
var email = $('.validate-input input[name="email"]');
var message = $('.validate-input textarea[name="message"]');
$('.validate-form').on('submit',function(){
var check = true;
if($(name).val().trim() == ''){
showValidate(name);
check=false;
}
if($(email).val().trim().match(/^([a-zA-Z0-9_\-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([a-zA-Z0-9\-]+\.)+))([a-zA-Z]{1,5}|[0-9]{1,3})(\]?)$/) == null) {
showValidate(email);
check=false;
}
if($(message).val().trim() == ''){
showValidate(message);
check=false;
}
return check;
});
$('.validate-form .input1').each(function(){
$(this).focus(function(){
hideValidate(this);
});
});
function showValidate(input) {
var thisAlert = $(input).parent();
$(thisAlert).addClass('alert-validate');
}
function hideValidate(input) {
var thisAlert = $(input).parent();
$(thisAlert).removeClass('alert-validate');
}
})(jQuery);
/*SPONSERS PAGE ENDS HERE............................*/
</script>
<script src="./script.js"></script>
<body>
<?php
if (isset($_REQUEST['ok'])) {
$xml = new DOMDocument("1.0","UTF-8");
$xml->load("b.xml");
$xml->formatOutput = true;
$xml->preserveWhiteSpace = true;
$rootTag = $xml->getElementsByTagName("userinfo")->item(0);
$dataTag = $xml->createElement("user");
$aTag = $xml->createElement("name",$_REQUEST['name']);
$bTag = $xml->createElement("email",$_REQUEST['email']);
$gTag = $xml->createElement("message",$_REQUEST['message']);
$dataTag->appendChild($aTag);
$dataTag->appendChild($bTag);
$dataTag->appendChild($gTag);
$rootTag->appendChild($dataTag);
$xml->save("b.xml");
}
?>
<script src="js/vendors/three.min.js"></script>
<script src="js/vendors/perlin.js"></script>
<script src="js/demo5.js"></script>
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<script>
//Count down timer
var deadline = new Date("August 24, 2019 5:00:00").getTime();
var x = setInterval(function() {
var now = new Date().getTime();
var t = deadline - now;
var days = Math.floor(t / (1000 * 60 * 60 * 24));
var hours = Math.floor((t%(1000 * 60 * 60 * 24))/(1000 * 60 * 60));
var minutes = Math.floor((t % (1000 * 60 * 60)) / (1000 * 60));
var seconds = Math.floor((t % (1000 * 60)) / 1000);
document.getElementById("demo").innerHTML = days + "d "
+ hours + "h " + minutes + "m " + seconds + "s ";
if (t < 0) {
clearInterval(x);
document.getElementById("demo").innerHTML = "EXPIRED";
}
}, 1000);
</script>
<div id="loading">
<div class="container heading">
<h1 style="color: #0ff; font-family: 'Quantico',sans-serif; font-size: 35px;"><center> THE BEST ACM STUDENT CHAPTER IN INDIA PRESENTS...</center></h1>
</div>
</div>
<div class="main">
<nav class="navbar fixed-top navbar-expand-md navbar-dark ml-auto">
<div class="container-fluid">
<a href="#home" class="navbar-brand" id="home">PULZION 19</a>
<button class="navbar-toggler ml-auto" id="nav-toggler-button" type="button" data-toggle="collapse" data-target="#mainNav">
<span class="navbar-toggler-icon">
<i class="fa fa-navicon"></i>
</span>
</button>
<div class="collapse navbar-collapse" id="mainNav">
<ul class="navbar-nav ml-auto">
<li><a class="nav-item nav-link active" data-toggle="collapse" data-target=".navbar-collapse.show" href="#section0">Home</a></li>
<li><a class="nav-item nav-link" data-toggle="collapse" data-target=".navbar-collapse.show" href="#aboutus">About Us</a></li>
<li><a class="nav-item nav-link" data-toggle="collapse" data-target=".navbar-collapse.show" href="#events">Events</a></li>
<li><a class="nav-item nav-link" data-toggle="collapse" data-target=".navbar-collapse.show" href="#sponsers">Sponsors</a></li>
<li><a class="nav-item nav-link" data-toggle="collapse" data-target=".navbar-collapse.show" href="#contactus">Contact Us</a></li>
</ul>
</div>
</div>
</nav>
<div id="section0">
<div class="caption">
<div class="text">COMING SOON</div>
<div id="demo"></div>
<!--<div id="home">PULZION 19</div>-->
</div>
<div id="ui">
<div class="ui-hud">
<div class="border b" style="margin-top: 25px;"></div>
<div class="border-v l">
<div class="cap"></div>
<div class="cap"></div>
<div class="batt"></div>
</div>
<div class="border-v r">
<div class="cap"></div>
<div class="cap"></div>
<div class="batt"></div>
</div>
<div class="circles l">
<div class="v-center">
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
</div>
</div>
<div class="circles r">
<div class="v-center">
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
</div>
</div>
</div>
<div id="header">
<div class="hud-box">
<!-- Arc Reactor -->
<div class="scaled" style="margin-top: 55px; align: center; margin:0 auto;">
<div id="arc_container">
<div class="arc_reactor">
<div class="case_container">
<div class="e7">
<div class="semi_arc_3 e5_1">
<div class="semi_arc_3 e5_2">
<div class="semi_arc_3 e5_3">
<div class="semi_arc_3 e5_4"></div>
</div>
</div>
</div>
<div class="core2"></div>
</div>
<ul class="marks">
<li></li><li></li><li></li><li></li><li></li><li></li>
<li></li><li></li><li></li><li></li><li></li><li></li>
<li></li><li></li><li></li><li></li><li></li><li></li>
<li></li><li></li><li></li><li></li><li></li><li></li>
<li></li><li></li><li></li><li></li><li></li><li></li>
<li></li><li></li><li></li><li></li><li></li><li></li>
<li></li><li></li><li></li><li></li><li></li><li></li>
<li></li><li></li><li></li><li></li><li></li><li></li>
<li></li><li></li><li></li><li></li><li></li><li></li>
<li></li><li></li><li></li><li></li><li></li><li></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<a class="ui-button small" href="#essay">
<div class="frame"></div>
<svg class="ui-arrow" viewBox="0 0 18 9">
<use xlink:href="#ui-arrow"></use>
</svg></a>
<!--<div class="intro v-center">
<div>
<p class="typer">PULZION 2019</p>
</div>
</div>
</div>-->
</div></div>
</div>
<!-- The canvas where ThreeJs renders the WebGL -->
<!--<div class="content">
<canvas id="scene"></canvas>
</div>-->
<div class="section1" >
<div id="aboutus">ABOUT US</div>
<br><br>
<div class="container content-container filter-container">
<div class="row">
<div class="col-md-1"></div>
<div class="card col-md-5" data-filter="free">
<div class="card-img-container" style="background: url(img/pasc-img.jpg) center center no-repeat;"></div>
<div class="card-text-container">
<h2 class="card-title">PASC</h2>
<p class="card-body">
PICT ACM Student's Chapter (PASC) is the most active ACM chapter in India.
#Unitedly we Succeed
At PASC, we all work together, as a team. We take utmost efforts for the success of each and every member of PASC. We help them to achieve not only technical superiority but also bring the best out of them in Non-technical fields as well so that they become the pioneers of today's world.
Since, we at PASC bring our Motto into reality, last year we were honored as the BEST ACM STUDENT CHAPTER IN INDIA.<br>
</p>
</div>
<div class="card-link-container">
<a class="more-link">More Info</a>
</div>
</div>
<div class="card col-md-5" data-filter="free">
<div class="card-img-container" style="background: url(img/pulzion18-img.jpg) center center no-repeat;"></div>
<div class="card-text-container">
<h2 class="card-title">PULZION</h2>
<p class="card-body">
Pulzion is the annual technical fest organized by PICT ACM Student Chapter. Pulzion has hosted multiple events including coding competition ranging from amateur competitions two day-long as well as mock placements, business management based and quizzing events. It has become one of the most anticipated events taking place at PICT with participants from colleges all over Pune. With high aspirations, backed with sincerity and dedication, the PASC team aims to add value to the college and all the people in it.<br>
</p>
</div>
<div class="card-link-container">
<a class="more-link">More Info</a>
</div>
</div>
<div class="col-md-1"></div>
</div>
</div>
</div>
<div class="stat" id="stats">
<div class="content-box">
<div class="container">
<div class="row text-center">
<div class="col-md-3">
<div class="stat-items">
<img src="img/stats/footfall.png">
<h2><span class="counter text-center">4000</span></h2>
<p>Footfall during<br> Pulzion 18</p>
</div>
</div>
<div class="col-md-3">
<div class="stat-items">
<img src="img/stats/event.png">
<h2><span class="counter text-center">13</span></h2>
<p>Events <br>Conducted</p>
</div>
</div>
<div class="col-md-3">
<div class="stat-items">
<img src="img/stats/registration.png">
<h2><span class="counter text-center">5000</span></h2>
<p>Registrations</p>
</div>
</div>
<div class="col-md-3">
<div class="stat-items">
<img src="img/stats/membership.png">
<h2><span class="counter text-center">100</span>%</h2>
<p>ACM Membership <br>to PASC Members</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<br style="size: 30px">
<div class="bgimg-1">
<div class="img-quotes"><br>
<span style="font-size: 90px;" >❞</span>Today's science fiction is tommorrow's science fact.
</div>
</div>
<div class="section2" >
<div id="events">EVENTS</div><br><br>
<div class="modal fade bg" tabindex="-1" role="dialog" aria-labelledby="mySmallModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title"><strong>Bug Off</strong></h4>
<button type="button" class="close" data-dismiss="modal">×</button>
</div>
<div class="modal-body">
<strong><i>Truth can be found within the code!</i></strong><br>
Bug-off is a competition where the participants are expected to remove the bugs from the given set of codes and achieve the desired output within the time limit. The participants (Team/Individual) with the maximum number of error-free codes win the contest.<br>
Round 1:<br>
In this round participants can Debug the bugged codes in any order.<br>
Round 2:<br>
Here the debugging codes in given order is mandatory. There won’t be any skips allowed.
</div>
</div>
</div>
</div>
<div class="modal fade cb" tabindex="-1" role="dialog" aria-labelledby="mySmallModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title"><strong>Code Buddy</strong></h4>
<button type="button" class="close" data-dismiss="modal">×</button>
</div>
<div class="modal-body">
<strong><i>Be the semicolon to your Buddy’s code!</i></strong><br>
A coding competition based on understanding your buddy’s code and continuing his code with speed to get the desired output.<br>
Round 1:<br>
In this round, your team needs to code fast for 10 easy questions within 30 minutes.<br>
Round 2:<br>
This is a relay coding round where teams have to solve 2 different problem sets by swapping with their partner in given intervals.
</div>
</div>
</div>
</div>
<div class="modal fade dq" tabindex="-1" role="dialog" aria-labelledby="mySmallModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title"><strong>Data Quest</strong></h4>
<button type="button" class="close" data-dismiss="modal">×</button>
</div>
<div class="modal-body">
<strong><i> What we have is Data Glut!</i></strong><br>
DataQuest is one of its kind data science competition taking place for first time in Pune. Participants will be tested upon their data science and machine learning skills to optimize the given metric for given dataset.
</div>
</div>
</div>
</div>
<div class="modal fade eq" tabindex="-1" role="dialog" aria-labelledby="mySmallModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title"><strong>ElectroQuest</strong></h4>
<button type="button" class="close" data-dismiss="modal">×</button>
</div>
<div class="modal-body">
<strong><i>Where knowledge meets imagination!</i></strong><br>
The first round is a treasure hunt across the campus using deductive EnTC related clues.
The qualifying teams would be given problem statements having difficulty level according
to the year of the participants. FE and SE/TE students would have to face simple circuit debugging and circuit building problems in the second round.
</div>
</div>
</div>
</div>
<div class="modal fade jc" tabindex="-1" role="dialog" aria-labelledby="mySmallModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title"><strong>Just Coding</strong></h4>
<button type="button" class="close" data-dismiss="modal">×</button>
</div>
<div class="modal-body">
<strong><i>while(!All-Clear()) try();</i></strong><br>
Just Coding is a competition where the participants will have to write correct and efficient codes for the given set of problem statements. <br>
Round 1:<br>
This is a coding round where teams have to code for given problems in a limited time.<br>
Round 2:<br>
Qualifying teams will then have to code for the problems of higher difficulty level in a limited time.
</div>
</div>
</div>
</div>
<!--<div class="modal fade wa" tabindex="-1" role="dialog" aria-labelledby="mySmallModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title"><strong>Web/App Development</strong></h4>
<button type="button" class="close" data-dismiss="modal">×</button>
</div>
<div class="modal-body">
<br><strong>The integration of information, design, and technology!</strong><br>
A platform to showcase your talent by making creative and unique websites or android applications in accordance with the provided problem statements.
</div>
</div>
</div>
</div>-->
<div class="modal fade rc" tabindex="-1" role="dialog" aria-labelledby="mySmallModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title"><strong>Recode It</strong></h4>
<button type="button" class="close" data-dismiss="modal">×</button>
</div>
<div class="modal-body">
The first round is Mcq round which will be conducted on paper. The participants will be allowed to use computer to code the solution if required or they can solve it on paper.<br>
In the second round they will be given a set of executable files. The participants can run the executables files and give custom input to see the respective output. The participants can run the files any number of times they want. From the given custom inputs by the participant they need to figure out the logic of the code of the executable file and code it.
</div>
</div>
</div>
</div>
<div class="modal fade dx" tabindex="-1" role="dialog" aria-labelledby="mySmallModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title"><strong>Dextrous</strong></h4>
<button type="button" class="close" data-dismiss="modal">×</button>
</div>
<div class="modal-body">
<strong><i>Show the BEST version of you!</i></strong><br>
Dextrous provides you with a unique experience of the standard interviewing procedure comprising an Aptitude Test and a Group Discussion followed by a Personal Interview taken by renowned professionals from the industry.
It is truly an opportunity in the form of a mock-interview before your placements.
</div>
</div>
</div>
</div>
<div class="modal fade ins" tabindex="-1" role="dialog" aria-labelledby="mySmallModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title"><strong>Insight</strong></h4>
<button type="button" class="close" data-dismiss="modal">×</button>
</div>
<div class="modal-body">
<strong><i>Talk with the pics!</i></strong><br>
Are you in search of a stage for the 'writer' within you? Folks, INSIGHT is then, your apt destination. Give birth to your own piece of literature, let it be a paragraph, a short story or even a poem, relating to the displayed image.
Use your creativity to the fullest in this 'unique' competition and unveil the budding writer in you.
Unfurl your imagination to the extreme and orchestrate a splendid art of writing at Insight.
</div>
</div>
</div>
</div>
<div class="modal fade fd" tabindex="-1" role="dialog" aria-labelledby="mySmallModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title"><strong>Fandom Quiz</strong></h4>
<button type="button" class="close" data-dismiss="modal">×</button>
</div>
<div class="modal-body">
<strong><i>Show how much of a true fan you are!</i></strong><br>
A Pop Culture quiz competition consisting of famous fandom topics like Game of Thrones, Harry Potter, FRIENDS, Marvel and DC. The competition consists of two rounds.<br>
Round 1:<br> A general quiz of duration 20 minutes.
<br>Round 2:<br> Buzzer Round having direct questions as well as audio visual questions.(HP,GOT,FRIENDS). Debate(Marvel vs. DC)
</div>
</div>
</div>
</div>
<div class="modal fade ps" tabindex="-1" role="dialog" aria-labelledby="mySmallModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title"><strong>Photoshop Royale</strong></h4>
<button type="button" class="close" data-dismiss="modal">×</button>
</div>
<div class="modal-body">
<strong><i>Let your design speak for itself !!</i></strong><br>
Ever wondered what kind of skill you have in the world of digital imagery?
Ever wondered if you're the best at Image manipulation?
Here is your chance to prove it, and take away a sweet prize while you're at it!<br>
Introducing the "PhotoShop Royale"!<br>
Showcase your skills in this event, by making the most creative, ingenious and meaningful poster.<br>
The theme of the poster for first round should be the theme of Pulzion, "Time and Space "<br>
Top 10 people will qualify for the second round, where you have to make the poster on the topic given on-the-spot.
</div>
</div>
</div>
</div>
<div class="modal fade qb" tabindex="-1" role="dialog" aria-labelledby="mySmallModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title"><strong>Quiz to Bid</strong></h4>
<button type="button" class="close" data-dismiss="modal">×</button>
</div>
<div class="modal-body">
<strong><i>Go BIG or go home!!</i></strong><br>
Ever dreamt of owning the perfect playing XI ?
We've got all you cricket enthusiasts a chance to create the best team
using strategic bidding and experience the thrill, like the IPL auction!
The first round will be a general quiz based on cricket. The second round of the contest will be a real-time auction.
</div>
</div>
</div>
</div>
<div class="modal fade cr" tabindex="-1" role="dialog" aria-labelledby="mySmallModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title"><strong>Cerebro</strong></h4>
<button type="button" class="close" data-dismiss="modal">×</button>
</div>
<div class="modal-body">
<strong><i>Be sagacious!</i></strong><br>
<!--<i>"There's a way out of every box; a solution to every puzzle. It's just a matter of finding it."</i><br><br>-->
Do you have the mettle to solve mind boggling questions and brain teasers?
Cerebro presents to you a great opportunity to test your logical and analytical skills.
The questions here will only judge your wit. Join forces, team up with your partner and prove
that you're the best! No need of any "general" knowledge, all that's required is a "special" brain!
</div>
</div>
</div>
</div>
<div class="modal fade eth" tabindex="-1" role="dialog" aria-labelledby="mySmallModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title"><strong>Ethical Hacking</strong></h4>
<button type="button" class="close" data-dismiss="modal">×</button>
</div>
<div class="modal-body">
<strong><i>Think like a thief to safe gaurd your Data and Information!</strong></i></strong><br>
With great advancement, comes its negative influences. Today, in this highly technologized world, everybody faces the effect of growing number of system vulnerabilities. The Ethical Hacking Workshop, conducted by<b> CYBERCURE Solutions</b> will prepare the participants to sustain in spite of these threats by covering all topics in detail under:
</div>
</div>
</div>
</div>
<div class="modal fade iot" tabindex="-1" role="dialog" aria-labelledby="mySmallModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title"><strong>IOT and Robotics</strong></h4>
<button type="button" class="close" data-dismiss="modal">×</button>
</div>
<div class="modal-body">
In today's world where "intelligence" is brought to everyday devices through <b>IoT</b> and "life" is brought to machines through <b>Robotics</b>, it becomes essential for everyone to have good knowledge of these.
The IoT and Robotics workshop, conducted by<b> CYBERCURE Solutions</b>
</div>
</div>
</div>
</div>
<br><br><br>
<div class="event-header">TECHNICAL</div><br><br>
<div class="tech-class">
<div>
<button type="button" data-toggle="modal" data-target=".bg"><h3>Bug Off</h3>
<img src="img/events/bugoff.jpg" class=" responsive" >
</button>
</div>
<div>
<button type="button" data-toggle="modal" data-target=".cb"><h3>Code Buddy</h3>
<img src="img/events/codebuddy.jpg" class=" responsive" >
</button>
</div>
<div>
<button type="button" data-toggle="modal" data-target=".dq" ><h3>DATAQUEST</h3>
<img src="img/events/dataquest.jpg" class=" responsive" >
</button>
</div>
<div>
<button type="button" data-toggle="modal" data-target=".eq" ><h3>ELECTROQUEST</h3>
<img src="img/events/electroquest.jpg" class=" responsive">
</button>
</div>
<div>
<button type="button" data-toggle="modal" data-target=".jc" ><h3>JUST CODING</h3>
<img src="img/events/justcoding.jpg" class=" responsive">
</button>
</div>
<!--<div>
<button type="button" data-toggle="modal" data-target=".wa" ><h3>WEB/APP.DEVELOPMENT</h3>
<img src="img/events/webapp.jpg" class=" responsive" >
</button>
</div>-->
<div>
<button type="button" data-toggle="modal" data-target=".rc" ><h3>Recode It</h3>
<img src="img/events/recodeit.jpg" class=" responsive" >
</button>
</div>
</div>
<br><br><br><br>
<div class="event-header">NON-TECHNICAL</div><br><br>
<div class="nontech-class">
<div>
<button type="button" data-toggle="modal" data-target=".dx" ><h3>DEXTROUS</h3>
<img src="img/events/dextrous.jpg" class=" responsive" >
</button>
</div>
<div>
<button type="button" data-toggle="modal" data-target=".ins" ><h3>INSIGHT</h3>
<img src="img/events/insight.jpg" class=" responsive" >
</button>
</div>
<div>
<button type="button" data-toggle="modal" data-target=".fd" ><h3>FANDOM QUIZ</h3>
<img src="img/events/fandomquiz.jpg" class=" responsive" >
</button>
</div>
<div>
<button type="button" data-toggle="modal" data-target=".ps" ><h3>PHOTOSHOP</h3>
<img src="img/events/psroyale.jpg" class=" responsive">
</button>
</div>
<div>
<button type="button" data-toggle="modal" data-target=".qb" ><h3>QUIZ TO BID</h3>
<img src="img/events/quiztobid.jpg" class=" responsive">
</button>
</div>
<div>
<button type="button" data-toggle="modal" data-target=".cr" ><h3>CEREBRO</h3>
<img src="img/events/cerebro.jpg" class=" responsive">
</button>
</div>
</div>
<br><br><br><br>
<div class="event-header">SEMINAR</div><br><br>
<div class="seminar-class">
<div>
<button type="button" data-toggle="modal" data-target=".eth" ><h3>ETH.HACKING</h3>
<img src="img/events/hw.jpg" class=" responsive">
</button>
</div>
<div>
<button type="button" data-toggle="modal" data-target=".iot" ><h3>IOT & ROBOTICS</h3>
<img src="img/events/iotw.jpg" class=" responsive">
</button>
</div>
</div>
</div>
<div class="section3">
<div id="sponsers">SPONSORS-2018</div><br><br><br>
<div class="flex-container">
<div class="imgs img-1">
<div class="infos info-1">
<h3>Title Sponsor</h3>
<p><br><br><a href="https://www.persistent.com/" target="_blank">Persistent</a></p>
</div>
</div>
<div class="imgs img-2">
<div class="infos info-2">
<h3>Event Sponsor</h3>
<p><br><br><a href="https://www.tieto.com/" target="_blank">Tieto</a></p>
</div>
</div>
<div class="imgs img-3">
<div class="infos info-3">
<h3>Associate   Sponsor</h3>
<p><br><br><a href="http://monimo.in/" target="_blank">Monimo</a></p>
</div>
</div>
<div class="imgs img-4">
<div class="infos info-4">
<h3>Online Ticket Partner</h3>
<p><br><br><a href="https://www.meraevents.com/" target="_blank">Mera Event</a></p>
</div>
</div>
<div class="imgs img-5">
<div class="infos info-5">
<h3>WorkShop   Partner</h3>
<p><br><br><a href="https://www.cybercure.in/services/" target="_blank">Cybercure Technologies</a></p>
</div>
</div>
<div class="imgs img-6">
<div class="infos info-6">
<h3>Coding Partner</h3>
<p><br><br><a href="https://www.codingninjas.in/" target="_blank">Coding Ninja</a></p>
</div>
</div>
<div class="imgs img-7">
<div class="infos info-7">
<h3>Hydration   Partner</h3>
<p><br><br><a href="https://www.facebook.com/permalink.php?id=897229513643746&story_fbid=2363257610374255" target="_blank">Urja</a></p>
</div>
</div>
<div class="imgs img-8">
<div class="infos info-8">
<h3>Refreshment Partner </h3>
<p><br><br><a href="https://www.swiggy.com/restaurants/twisty-potato-magarpatta-pune-110608" target="_blank">Twisty Potato</a></p>
</div>