-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
4157 lines (3695 loc) · 115 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>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Procyon</title>
<!-- Favicon -->
<link rel="shortcut icon" type="image/icon" href="pics/1702.jpeg" />
<!-- Font Awesome -->
<link href="assets/css/font-awesome.min.css" rel="stylesheet">
<!-- Bootstrap -->
<link href="assets/css/bootstrap.min.css" rel="stylesheet">
<!-- Slick slider -->
<link href="assets/css/slick.css" rel="stylesheet">
<!-- Theme color -->
<link id="switcher" href="assets/css/theme-color/default-theme.css" rel="stylesheet">
<!-- sponsorslider -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.carousel.min.css">
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.theme.default.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/owl.carousel.min.js"></script>
<script src="custom.js"></script>
<!-- Main Style -->
<link href="style.css" rel="stylesheet">
<!-- Fonts -->
<script src="./app.js"></script>
<!-- <script src="https://scriptsapi.netlify.app/Scripts/procyon/app.js"></script> -->
<!-- Open Sans for body font -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,400i,600,700,800" rel="stylesheet">
<!-- Montserrat for title -->
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="style1.css">
<style type="text/css">
.modal-content {
background-color: #EE3268;
color: white;
}
</style>
<script>
$(function () {
$("#dialog").dialog({
autoOpen: false,
show: {
effect: "blind",
duration: 1000
},
hide: {
effect: "explode",
duration: 1000
}
});
$("#opener").on("click", function () {
$("#dialog").dialog("open");
});
});
</script>
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- Start Header -->
<header id="mu-hero" class="" role="banner">
<!-- Start menu -->
<nav class="navbar navbar-fixed-top navbar-default mu-navbar">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse"
data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<!-- Logo -->
<a class="navbar-brand" href="index.html">PROCYON 2K23</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav mu-menu navbar-right">
<li><a href="#mu-hero">Home</a></li>
<li><a href="#mu-about">About</a></li>
<li><a href="#mu-schedule">Schedule</a></li>
<li><a href="#mu-speakers">Glimpses</a></li>
<li><a href="#mu-register">Register</a></li>
<li><a href="#mu-sponsors">Sponsors</a></li>
<li><a href="#mu-contact">Contact</a></li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
<!-- End menu -->
<div class="mu-hero-overlay">
<div class="container">
<div class="mu-hero-area">
<!-- Start hero featured area -->
<div class="mu-hero-featured-area">
<!-- Start center Logo -->
<div class="mu-logo-area">
<!-- text based logo -->
<a class="mu-logo" href="#">PROCYON 2K23</a>
<!-- image based logo -->
<!-- <a class="mu-logo" href="#"><img src="assets/images/logo.jpg" alt="logo img"></a> -->
</div>
<!-- End center Logo -->
<div class="mu-hero-featured-content">
<h1>Welcome!</h1>
<h2>The Biggest Cultural Event in DBCE</h2>
<p class="mu-event-date-line">17th - 18th MAY, 2023</p>
<div class="mu-event-counter-area">
<div id="mu-event-counter">
</div>
</div>
</div>
</div>
<!-- End hero featured area -->
</div>
</div>
</div>
</header>
<!-- End Header -->
<!-- Start main content -->
<main role="main">
<!-- Start About -->
<section id="mu-about">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="mu-about-area">
<!-- Start Feature Content -->
<div class="row">
<div class="col-md-6">
<div class="mu-about-left">
<img class=""
src="https://scriptsapi.netlify.app/Scripts/Procyon/posterfinal.jpg" alt="" style="height: 100%;object-fit: cover;">
</div>
</div>
<div class="col-md-6 ">
<div class="mu-about-right ">
<h2 style="font-size: 50px; text-align: center;">About The Event</h2>
<div style="font-size:18px; text-align: center;">
<p>Procyon is an inter-class cultural fiesta, wherein students of 17
different classes showcase their talents in various cultural activities
on a common platform.This year several activities like:</p>
<ol style="list-style-type:none;">
<li>Ghumat Aarti</li>
<li>The Voice</li>
<li>Skit</li>
<li>Battle of Bands</li>
<li>Hoist the Banner</li>
<li>Food Wizard</li>
<li>Art of Colors</li>
<li>Slow Mo</li>
<li>Mad-Lipz</li>
<li>Reel Life</li>
<li>Step Up Revolution</li>
<li>Mr. and Ms. Procyon</li>
<li>Rock the Ramp</li>
<li>Street Play</li>
<li>Treasure Hunt</li>
<li>Face Painting</li>
<li>Artificial Jewellery</li>
<li>Framed will be held in the college campus.</li> <br>
</ol>
<p>This event is organised by the students for the students.</p>
</div>
</div>
</div>
</div>
<!-- End Feature Content -->
</div>
</div>
</div>
</div>
</section>
<!-- End About -->
<!-- Start Video -->
<section id="mu-video">
<div class="mu-video-overlay">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="mu-video-area">
<h2>Follow Us on Instagram!!</h2>
<br><a href="https://www.instagram.com/dbceprocyon2k22/">
<img border="0" alt="Instagram" src="pics/instagram.png" width="200" height="200">
</div>
</div>
</div>
</div>
</div>
<!-- Start Video content -->
<div class="mu-video-content">
<div class="mu-video-iframe-area">
<a class="mu-video-close-btn" href="#"><i class="fa fa-times" aria-hidden="true"></i></a>
<iframe width="854" height="480" src="https://www.youtube.com/embed/Sntk8dqgF_k" frameborder="0"
allowfullscreen></iframe>
</div>
</div>
<!-- End Video content -->
</section>
<!-- End Video -->
<!-- Start Schedule -->
<section id="mu-schedule">
<div class="container">
<div class="row">
<div class="colo-md-12">
<div class="mu-schedule-area">
<div class="mu-title-area">
<h2 class="mu-title">Schedule Detail</h2>
<p>Here are the wide range of events that would start off from the 17th of May till 18th
of May</p>
</div>
<div class="mu-schedule-content-area">
<!-- Nav tabs -->
<ul class="nav nav-tabs mu-schedule-menu" role="tablist">
<li role="presentation" class="active"><a href="#first-day"
aria-controls="first-day" role="tab" data-toggle="tab">Day 1 / 17 May</a>
</li>
<li role="presentation"><a href="#second-day" aria-controls="second-day" role="tab"
data-toggle="tab">Day 2 / 18 May</a></li>
<!--li role="presentation"><a href="#third-day" aria-controls="third-day" role="tab" data-toggle="tab">3 Day / 21 Feb</a></li-->
</ul>
<!-- Tab panes -->
<div class="tab-content mu-schedule-content">
<div role="tabpanel" class="tab-pane fade mu-event-timeline in active"
id="first-day">
<ul>
<!--DAY 1 ON STAGE-->
<li>
<div class="btn mu-single-event">
<p class="mu-event-time">9:15 - 10:30 AM</p>
<h3>FORMAL INAUGRAL</h3>
</div>
</li>
<li>
<div class="btn mu-single-event" data-toggle="modal"
data-target="#modal1">
<img src="pics/ghumat.jpg" alt="event speaker">
<p class="mu-event-time">10:30 - 11:30 AM</p>
<p class="mu-event-time">MAIN STAGE</p>
<h3>GHUMAT AARTI</h3>
<span>GOLD</span>
</div>
</li>
<li>
<div class="btn mu-single-event" data-toggle="modal"
data-target="#modal2">
<img src="pics/TheVoice.png" alt="event speaker">
<p class="mu-event-time">11:30 AM - 1:30 PM</p>
<p class="mu-event-time">MAIN STAGE</p>
<h3>THE VOICE</h3>
<span>SILVER</span>
</div>
</li>
<li>
<div class=" btn mu-single-event" data-toggle="modal"
data-target="#modal3">
<img src="pics/Skit.jpg" alt="event speaker">
<p class="mu-event-time">2:00 - 3:00 PM </p>
<p class="mu-event-time">MAIN STAGE</p>
<h3>SKIT</h3>
<span>GOLD</span>
</div>
</li>
<li>
<div class="btn mu-single-event" data-toggle="modal"
data-target="#modal5">
<img src="pics/battleofband.jpg" alt="event speaker">
<p class="mu-event-time">3:30 - 5:30 PM </p>
<p class="mu-event-time">MAIN STAGE</p>
<h3>BATTLE OF BANDS</h3>
<span>GOLD</span>
</div>
</li>
<!--DAY 1 OFF STAGE-->
<li>
<div class="btn mu-single-event" data-toggle="modal"
data-target="#modal7">
<img src="pics/masterchef1.png" alt="event speaker">
<p class="mu-event-time">10:30 AM - 1:30 PM </p>
<p class="mu-event-time">V2</p>
<h3>FOOD WIZARD</h3>
<span>BRONZE</span>
</div>
</li>
<li>
<div class="btn mu-single-event" data-toggle="modal"
data-target="#modal6">
<img src="pics/brush%20strokes.jpeg" alt="event speaker">
<p class="mu-event-time">10:30 AM - 1:30 PM </p>
<p class="mu-event-time">V1</p>
<h3>HOIST THE BANNER</h3>
<span>BRONZE</span>
</div>
</li>
<li>
<div class="btn mu-single-event" data-toggle="modal"
data-target="#modal8">
<img src="pics/rangoli.jpg" alt="event speaker">
<p class="mu-event-time">10:30 AM - 1:30 PM </p>
<p class="mu-event-time">Near the Chapel</p>
<h3>THE ART OF COLORS</h3>
<span>BRONZE</span>
</div>
</li>
<li>
<div class="btn mu-single-event" data-toggle="modal"
data-target="#modal9">
<img src="pics/madlip.jpg" alt="event speaker">
<p class="mu-event-time">2:00 PM - 2:30 PM </p>
<p class="mu-event-time">Submission</p>
<h3>MAD-LIPZ</h3>
<span>BRONZE</span>
</div>
</li>
<li>
<div class="btn mu-single-event" data-toggle="modal"
data-target="#modal10">
<img src="pics/movie making.png" alt="event speaker">
<p class="mu-event-time">2:30 PM - 3:00 PM </p>
<p class="mu-event-time">Submission</p>
<h3>REEL LIFE</h3>
<span>SILVER</span>
</div>
</li>
<li>
<div class="btn mu-single-event" data-toggle="modal"
data-target="#modal11">
<img src="pics/slow mo.jpg" alt="event speaker">
<p class="mu-event-time">3:00 - 3:30 PM </p>
<p class="mu-event-time">Outside Civil</p>
<h3>SLOW-MO</h3>
<span>FUN</span>
</div>
</li>
</ul>
</div>
<!--DAY 2 ON STAGE-->
<div role="tabpanel" class="tab-pane fade mu-event-timeline" id="second-day">
<ul>
<li>
<div class="btn mu-single-event" data-toggle="modal"
data-target="#modal14">
<img src="pics/group dance.jpg" alt="event speaker">
<p class="mu-event-time">10:00 AM - 12:00 PM </p>
<p class="mu-event-time">MAIN STAGE</p>
<h3>STEP UP REVOLUTION</h3>
<span>GOLD</span>
</div>
</li>
<li>
<div class="btn mu-single-event" data-toggle="modal"
data-target="#modal15">
<img src="pics/couple.jpeg" alt="event speaker">
<p class="mu-event-time">2:30 - 4:00 PM </p>
<p class="mu-event-time">MAIN STAGE</p>
<h3>MR. AND MS. PROCYON</h3>
<span>SILVER</span>
</div>
</li>
<li>
<div class="btn mu-single-event" data-toggle="modal"
data-target="#modal16">
<img src="pics/FashionShow.jpg" alt="event speaker">
<p class="mu-event-time">4:00 - 5:30 PM </p>
<p class="mu-event-time">MAIN STAGE</p>
<h3>ROCK THE RAMP</h3>
<span>GOLD</span>
</div>
</li>
<!--DAY 2 OFF STAGE-->
<li>
<div class="btn mu-single-event" data-toggle="modal"
data-target="#modal17">
<img src="pics/street play.jpg" alt="event speaker">
<p class="mu-event-time">1:30 - 2:30 PM </p>
<p class="mu-event-time">Near Chapel</p>
<h3>STREET PLAY</h3>
<span>SILVER</span>
</div>
</li>
<li>
<div class="btn mu-single-event" data-toggle="modal"
data-target="#modal30">
<img src="pics/treasure.jpg" alt="event speaker">
<p class="mu-event-time">9:30 - 11:00 PM </p>
<h3>TREASURE HUNT</h3>
<span>BRONZE</span>
</div>
</li>
<li>
<div class="btn mu-single-event" data-toggle="modal"
data-target="#modal19">
<img src="pics/face.jpg" alt="event speaker">
<p class="mu-event-time">11:00 - 1:00 PM </p>
<p class="mu-event-time">Near Chapel</p>
<h3>FACE PAINTING</h3>
<span>BRONZE</span>
</div>
</li>
<li>
<div class="btn mu-single-event" data-toggle="modal"
data-target="#modal18">
<img src="pics/artificial.jpg" alt="event speaker">
<p class="mu-event-time">11:00 - 1:00 PM</p>
<p class="mu-event-time">V1</p>
<h3>ARTIFICIAL JEWELLERY</h3>
<span>BRONZE</span>
</div>
</li>
<li>
<div class="btn mu-single-event" data-toggle="modal"
data-target="#modal20">
<img src="pics/photography.jpg" alt="event speaker">
<p class="mu-event-time">1:00 PM - 1:30 PM </p>
<p class="mu-event-time">Submission</p>
<h3>FRAMED</h3>
<span>BRONZE</span>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<div class="rules-area">
<!-- Nav tabs -->
<ul class="nav nav-tabs mu-schedule-menu" role="tablist">
</ul>
</div>
</div>
<!-- End Schedule -->
<!-- Start General rules -->
<div class="container">
<div class="mu-rules-content">
<div class="col-lg-12">
<div class="row">
<div class="col-md-4"></div>
<center>
<div class="col-md-4"><!-- Button trigger modal -->
<button type="button" class="btn btn-lg btn-block modal-content" data-toggle="modal"
data-target="#modal24">
General Rules
</button>
</center>
<!-- Modal -->
<div class="modal fade" id="modal24" tabindex="-1" role="dialog"
aria-labelledby="exampleModalLongTitle" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">General Rules</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<h3 class="rules-points"><b>POINTS SYSTEM</b></h3>
<table class="table table-bordered table-centered table-responsive mx-auto"
border="2">
<tr>
<td><b>POSITION</b></td>
<td><b>GOLD</b></td>
<td><b>SILVER</b></td>
</tr>
<tr>
<td>1st</td>
<td>200</td>
<td>150</td>
</tr>
<tr>
<td>2nd</td>
<td>150</td>
<td>100</td>
</tr>
<tr>
<td>3rd</td>
<td>100</td>
<td>50</td>
</tr>
</table>
<br>
<table class="table table-bordered table-centered table-responsive mx-auto"
border="2">
<tr>
<td><b>POSITION</b></td>
<td><b>BRONZE</b></td>
<td><b>FUN</b></td>
</tr>
<tr>
<td>1st</td>
<td>100</td>
<td>50</td>
</tr>
<tr>
<td>2nd</td>
<td>50</td>
<td>25</td>
</tr>
<tr>
<td>3rd</td>
<td>25</td>
<td>10</td>
</tr>
</table>
<br>
<table class="table table-bordered table-centered table-responsive mx-auto"
border="2">
<tr>
<td><b>POSITION</b></td>
<td><b>PLATINUM</b></td>
</tr>
<tr>
<td>-</td>
<td>50</td>
</tr>
</table>
<br>
<h5>Note:</h5>
<ol class="generalrules-content">
<li><b>PARTICIPATION POINTS:</b>Teams participating in all events will get
100 bonus points.All the points for department events are shared equally
among all the 4 classes</li>
<li><b>JOKER CARD:</b>There will be 2 joker cards i.e. one for class event
and one for department event. Each class can put a joker on any class
event. If that class wins that event then they will get double the
points or else they will have to forfeit 100 points. Similarly each
department can put a joker on any department event. If that department
wins that event then they will get double the points or else they will
have to forfeit 100 points. The joker works only if the team has secured
either 1st ,2nd or 3rd place in that particular event. This is
applicable for all class and department events as well.
Eg. In case of department events if a department had put a joker on a
gold event and if that department has won 1st place in that event then
all the 4 classes of that department (FE,SE,TE,BE) will receive 400
points each.
The joker should be submitted in the online form by <b>15th May 2pm and
is compulsory</b>.
</li>
<li>
<b>FACULTY POINTS:</b> If any faculty participates in any department
event then that department will automatically get 25 bonus points for
that respective event. (Maximum 2 faculty can participate in any
department event ) These points can be applied for all the specified
department events.
Eg. If a faculty participates for in ghumat aarti and another
participates for street play in the same department then that department
will receive 50 points (25 for ghumat aarti & 25 for street play). Even
if a single faculty participates then that department is eligible for 25
points. There is a faculty fashion show: Participation of minimum 3 will
fetch the department 50 points. Any faculty from science and humanities can participate and represent any other departments.
</li>
</ol>
<br>
<br>
<h6 class="rules-points"><b>GENERAL INSTRUCTIONS</b></h6>
<ol class="generalrules-content">
<li>
Participants must <b><u>report at least 15mins</u></b> before the start
of their respective event. Failure to do so might disqualify that team
from that event.
</li>
<li>
Decision of judges is final. Any participant arguing with the judges
will lead to his/her <b><u>disqualification</u></b>.
</li>
<li>
Vulgarity of any kind should not be portrayed in any manner, direct or
indirect and engaging in vulgar activities will lead to
<b><u>disqualification</u></b> of the entire team.
</li>
<li>
Vulgar words are <b><u>prohibited</u></b> in the college campus.
</li>
<li>
Suicidal topics are strictly banned from portraying in any of the events
whether on stage or off stage.
</li>
<li>
Participants have to strictly adhere to the timings mentioned in each of
the events.
</li>
<li>
Submission dates and timings for the photos and videos should be
strictly taken into consideration. No photos or videos will be
entertained after the appointed time has passed.
</li>
<li>
Participants have to get their <b><u>own equipment</u></b> for all the
events mentioned.
</li>
<li>
There will be 4 departments competing against each other: Civil
department, Mechanical department, ETC department, Computer department.
</li>
<li>
First years are clubbed into their respective
department(Civil,Mech,ETC,Comp).
</li>
<li>
Faculties can participate in all department events except for Solo
dance.
</li>
<li>
Faculties of Humanities Department can join any other department in the
department events based on his/her consent.
</li>
<li>
Faculty members cannot participate in class events
</li>
<li>
<b>Allocation of joker cards is compulsory for class as well as
department events.</b>
</li>
<li>
Registration process is strictly online on the official PROCYON website
(<a href="https://procyon.dbcegoa.ac.in">
<b>www.procyon.dbcegoa.ac.in</b></a>).
</li>
<li>
Details of all events including the registration form and links to the
videos will be hosted on the website.
</li>
<li>
Each department should allocate a <b><u>department coordinator</u></b>
(any of the 4 CR’s) to submit the registration form for the department
events.
</li>
<li>
Forms submitted can be <b><u>edited till 16th May 2pm</u></b>. After
that editing of the forms will not be allowed.
</li>
<li>
Each CR will be given a <b><u>unique ID and password</u></b> which will
enable him/her to access the registration form and to prevent misuse of
the form.
</li>
<li>Forms should be submitted before 16th May 2pm. After that the online
portal will not accept any forms and the teams will therefore not be
able to participate in any event which they haven’t registered for.</li>
<li>
The submission of the audio and video files should be done to the
respective event coordinators only.
</li>
<li>
Judgement criteria given for the events mentioned in the brochure are
tentative and are subject to change based on the decision of the judges.
</li>
<li>
For fashion show event, each of the departments should compulsorily
allocate one faculty member to ensure that the costumes are upto the
mark.
</li>
<li>
<b><u>Negative marking</u></b> will take place if the team exceeds its
appointed time.
</li>
<li>
All event timings include stage setup time and performance time. No
extra time will be allocated for stage setup.
</li>
<li>
Venues <b>V1 & V2</b> will be inside the pandal area.
</li>
</ol>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary clsbtn"
data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-4"></div>
</div>
</div>
</div>
</div>
<!-- End rules -->
<!-- Start Speakers -->
<section id="mu-speakers">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="mu-speakers-area">
<div class="mu-title-area">
<h2 class="mu-title">Glimpses of events held last year</h2>
<p></p>
</div>
<!-- Start Speakers Content -->
<div class="mu-speakers-content">
<div class="mu-speakers-slider">
<!-- Start single speaker -->
<div class="mu-single-speakers">
<img src="pics/IMG_3856.JPG" alt="speaker img">
</div>
<!-- End single speaker -->
<!-- Start single speaker -->
<div class="mu-single-speakers">
<img src="pics/IMG_6111.JPG" alt="speaker img">
</div>
<!-- End single speaker -->
<!-- Start single speaker -->
<div class="mu-single-speakers">
<img src="pics/IMG_5988.JPG" alt="speaker img">
</div>
<!-- End single speaker -->
<!-- Start single speaker -->
<div class="mu-single-speakers">
<img src="pics/_MG_8139.JPG" alt="speaker img">
</div>
<!-- End single speaker -->
<!-- Start single speaker -->
<div class="mu-single-speakers">
<img src="pics/IMG_4492.JPG" alt="speaker img">
</div>
<!-- End single speaker -->
<!-- Start single speaker -->
<div class="mu-single-speakers">
<img src="pics/IMG_3912.JPG" alt="speaker img">
</div>
<!-- End single speaker -->
<!-- End single speaker -->
</div>
</div>
<!-- End Speakers Content -->
</div>
</div>
</div>
</div>
</section>
<!-- End Speakers -->
<!-- Start Venue -->
<section id="mu-venue">
<div class="mu-venue-area">
<div class="row">
<div class="col-md-6">
<div class="mu-venue-map">
<iframe
src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d15394.22519423461!2d73.9690846!3d15.291974!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3bbfb1631736de9d%3A0x980720b4516a7a5!2sDon%20Bosco%20College%20Of%20Engineering!5e0!3m2!1sen!2sin!4v1683527701515!5m2!1sen!2sin"
width="100%" height="450" style="border:0;" allowfullscreen="" loading="lazy"
referrerpolicy="no-referrer-when-downgrade"></iframe>
<!-- <iframe src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d15394.22519423461!2d73.9690846!3d15.291974!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3bbfb1631736de9d%3A0x980720b4516a7a5!2sDon%20Bosco%20College%20Of%20Engineering!5e0!3m2!1sen!2sin!4v1683527701515!5m2!1sen!2sin" width="100%" height="450" frameborder="0" style="border:0" allowfullscreen></iframe> -->
</div>
</div>
<div class="col-md-6">
<div class="mu-venue-address">
<h2>VENUE <i class="fa fa-chevron-right" aria-hidden="true"></i></h2>
<h3>Don Bosco College Of Engineering</h3>
<h4>Murida Rd, Fatorda, Margao, Goa</h4>
<p>Pin Code: 403602<br>Phone: 0832 2743944</p>
</div>
</div>
</div>
</div>
</section>
<!-- End Venue -->
<!-- Start Register -->
<section id="mu-register">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="mu-register-area">
<div class="mu-title-area">
<h2 class="mu-title">Register Your Team</h2>
<p>For participation in any events, Please inform your Class Representative(CR)</p>
<p>Note:Only CRs can register</p>
</div>
<div class="mu-register-content">
<div class="mu-register-form" method="POST">
<div class="row">
<div class="col-md-4">
<div class="form-group">
<input type="text" class="form-control" placeholder="User Name"
id="name" name="username" required="">
</div>
</div>
<div class="col-md-4">
<div class="form-group">
<input type="password" class="form-control" placeholder="Password"
id="pass" name="password" required="">
</div>
</div>
<div class="col-md-4" >
<select class="form-control" name="event-category" id="SelectionFromReg">
<option value="" selected="selected">Choose Event Category</option>
<option value="class-event">Class</option>
<option value="department-event">Department</option>
</select>
</div>
</div>
<button type="submit" name="login" class="mu-reg-submit-btn" onclick="login()">LOG IN</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Register -->
<!-- Start Sponsors -->
<section id="mu-sponsors">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="mu-sponsors-area">
<div class="mu-title-area">
<h2 class="mu-title">Our Sponsors</h2>
<p style="margin-right:10px;">We are grateful to all our sponsors which will help us
make our event a grand success</p>
</div>
<!-- Start spnonsors brand logo -->
<!-- <div class="mu-sponsors-content">
<div class="row">
<div class="col-md-2 col-sm-4 col-xs-4">
<div class="mu-sponsors-single">
<img src="sponsors/brand1.png" alt="">
</div>
</div>
<div class="col-md-2 col-sm-4 col-xs-4">
<div class="mu-sponsors-single">
<img src="sponsors/brand2.png" alt="">
</div>
</div>
</div>
</div> -->
<div class="container h-100">
<div class="row align-items-center h-100">
<div class="container rounded">
<br>
<div class="slider">
<div class="logos">
<!-- <img class="fab" src="pics/brand1.png" alt="">
<img class="fab" src="pics/brand2.png" alt="">
<img class="fab" src="pics/brand3.png" alt="">
<img class="fab" src="pics/brand9.png" alt="">
<img class="fab" src="pics/brand4.png" alt="">
<img class="fab" src="pics/brand13.png" alt="">
<img class="fab" src="pics/brand5.png" alt="">
<img class="fab" src="pics/brand6.png" alt="">
<img class="fab" src="pics/brand7.png" alt="">
<img class="fab" src="pics/brand8.png" alt="">
<img class="fab" src="pics/brand10.png" alt="">
<img class="fab" src="pics/brand11.png" alt="">
<img class="fab" src="pics/brand12.png" alt="">
<img class="fab" src="pics/brand15.png" alt="">
<img class="fab" src="pics/brand16.png" alt="">
<img class="fab" src="pics/brand17.png" alt="">
<img class="fab" src="pics/brand14.png" alt=""> -->
</div>
</div>
</div>
</div>
</div>
<!-- End spnonsors brand logo -->
</div>
</div>
</div>
</div>