-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
1229 lines (1113 loc) · 67.9 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
<?php
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);
include('routes/connect.php');
session_unset();
if (!isset($_SESSION)) {
session_start();
}
?>
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Waves'24</title>
<link href="https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css" rel="stylesheet">
<link rel="stylesheet" href="public/css/swiper.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="public/css/style.css">
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<script nonce="2af76b41-facd-47ce-9e71-e256854a4086">
(function(w, d) {
! function(db, dc, dd, de) {
db[dd] = db[dd] || {};
db[dd].executed = [];
db.zaraz = {
deferred: [],
listeners: []
};
db.zaraz.q = [];
db.zaraz._f = function(df) {
return async function() {
var dg = Array.prototype.slice.call(arguments);
db.zaraz.q.push({
m: df,
a: dg
})
}
};
for (const dh of ["track", "set", "debug"]) db.zaraz[dh] = db.zaraz._f(dh);
db.zaraz.init = () => {
var di = dc.getElementsByTagName(de)[0],
dj = dc.createElement(de),
dk = dc.getElementsByTagName("title")[0];
dk && (db[dd].t = dc.getElementsByTagName("title")[0].text);
db[dd].x = Math.random();
db[dd].w = db.screen.width;
db[dd].h = db.screen.height;
db[dd].j = db.innerHeight;
db[dd].e = db.innerWidth;
db[dd].l = db.location.href;
db[dd].r = dc.referrer;
db[dd].k = db.screen.colorDepth;
db[dd].n = dc.characterSet;
db[dd].o = (new Date).getTimezoneOffset();
if (db.dataLayer)
for (const dp of Object.entries(Object.entries(dataLayer).reduce(((dq, dr) => ({
...dq[1],
...dr[1]
})), {}))) zaraz.set(dp[0], dp[1], {
scope: "page"
});
db[dd].q = [];
for (; db.zaraz.q.length;) {
const ds = db.zaraz.q.shift();
db[dd].q.push(ds)
}
dj.defer = !0;
for (const dt of [localStorage, sessionStorage]) Object.keys(dt || {}).filter((dv => dv
.startsWith("_zaraz_"))).forEach((du => {
try {
db[dd]["z_" + du.slice(7)] = JSON.parse(dt.getItem(du))
} catch {
db[dd]["z_" + du.slice(7)] = dt.getItem(du)
}
}));
dj.referrerPolicy = "origin";
dj.src = "/cdn-cgi/zaraz/s.js?z=" + btoa(encodeURIComponent(JSON.stringify(db[dd])));
di.parentNode.insertBefore(dj, di)
};
["complete", "interactive"].includes(dc.readyState) ? zaraz.init() : db.addEventListener(
"DOMContentLoaded", zaraz.init)
}(w, d, "zarazData", "script");
})(window, document);
</script>
</head>
<body id="body">
<div class="modal fade commonRules" id="commonRules" tabindex="-1" role="dialog" aria-labelledby="commonRules" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content" style="padding: 23px;">
<div class="modal-header">
<h4 class="modal-title" id="exampleModalLabel" style="color: #e22361;">Rules and Regulation</h4>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body" style="height: 625px !important;">
<div style="color: black;">
1. Separate Events for Boys and Girls: Events will be conducted separately for
boys and girls, with a focus on team participation.<br />
2. Registration Deadline: Participants must register for events within the
specified deadline set by the organizers.<br />
3. No Alterations after Deadline: Once the registration deadline has passed, no
changes or alterations to registrations will be accepted.<br />
4. Lot System for Order: The order in which teams perform will be determined by
a random lot system.<br />
5. Team Captain's Role: The team in charges and captain will draw lots and
communicate the order of events to the team members.<br />
6. ID card Submission: Participants must submit their ID cards before
participating in the event and collect them after their performance.<br />
7. Maintaining Discipline: Proper discipline should be maintained throughout the
event.<br />
8. Rules and Registration Deviation: Any deviation from the rules and
regulations of the event or changes in registered participants will result in
disqualification.<br />
9. Prizes: Prizes will be awarded for first and second places in each event, with
points assigned as follows:<br />
10. 1st Place: 10 points<br />
11. 2nd Place: 5 points<br />
12. Participation Certificates: All participants will receive a participation
certificate.<br />
13. Judge's Decision: The decision of the judge(s) is final.<br />
14. Rolling Shields: Overall winners and runners-up will receive rolling shields as
awards.<br />
15. Managing Time Clashes: Teams are responsible for managing any time clashes
between events themselves.<br />
16. Maximum Participation: Each student can participate in a maximum of two
events.<br />
17. IMPORTANT NOTE : The team with the highest number of individual
participants will receive an additional 10 points added to their total score.
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal"></button>
</div>
</div>
</div>
</div>
<?php
$events = mysqli_query($conn, "SELECT * FROM `eventdb`");
while ($event = mysqli_fetch_array($events)) {
?>
<!-- Modal -->
<div class="modal fade <?php echo $event['event_id'] ?>" tabindex="-1" role="dialog" aria-labelledby="<?php echo $event['event_id'] ?>" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content" style="padding: 23px;">
<div class="modal-header">
<h4 class="modal-title" id="exampleModalLabel" style="color: #e22361;">
<?php echo $event['event_name'] ?>
</h4>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<div>
<div style="margin: 12px; text-align: center;">
<img src="<?php echo $event['image'] ?>" alt="" srcset="" width="270px" height="170px" style="margin: 22px;">
<h4>
<?php echo $event['event_date'] ?>
</h4>
<h4>
<?php echo $event['event_time'] ?>
</h4>
<h4>
<?php echo $event['event_venue'] ?>
</h4>
<p>Event Cordinators
<br />
<?php $coordinators = explode("|", $event['event_cordinators']);
foreach ($coordinators as $letter => $index) {
echo '<span>' . $coordinators[$letter] . '<br /></span>';
}
?>
</p>
</div>
<h4 style="color: #e22361;">Rules</h4>
<p>
<?php $rules = explode(".", $event['event_rules']);
array_pop($rules);
foreach ($rules as $letter => $index) {
echo ($letter + 1) . '. ' . $rules[$letter] . '<br />';
}
?>
</p>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<?php
}
?>
<header class="site-header">
<div class="header-bar">
<div class="container-fluid">
<div class="row align-items-center">
<div class="col-10 col-lg-4">
<h1 class="site-branding flex">
<!-- <img src="public/images/logos/waves-logo.png" alt="" class="" width="120"> -->
<!-- <a href="#">Waves'24</a> -->
</h1>
</div>
<div class="col-2 col-lg-8">
<nav class="site-navigation">
<div class="hamburger-menu d-lg-none" style="position: fixed;">
<span></span>
<span></span>
<span></span>
<span></span>
</div>
<ul>
<li><a href=" ">Home</a></li>
<li><a href="#gallary">Waves'22</a></li>
<li><a href="#boysEvent">Boys Event</a></li>
<li><a href="#girlsEvent">Girls Event</a></li>
<li><a href="#footer">Contact Us</a></li>
<!-- <li><a href="#"><i class="fas fa-search"></i></a></li> -->
<li><button type="button" class="btn btn-login btn-primary" data-toggle="modal" data-target="#loginModal">Login</button></li>
</ul>
</nav>
</div>
</div>
</div>
</div>
</header>
<!-- Login Modal -->
<div style='margin-top: 32px' class="modal fade loginModal" id="loginModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document" style="padding: 28px;">
<div class="modal-content">
<div class="modal-body login-modal-body">
<div class="column" id="main">
<h1 style='margin-bottom: 34px'>Login</h1>
<form action="routes/auth/login.php" method="post">
<div class="form-group"> <label for="role">
<h6>Role</h6>
</label>
<div class="input-group"> <select name="role" id="login-role" onchange="checkLogin()" placeholder="Select role" class="form-control" required>
<option value="" hidden></option>
<option value="student">Student</option>
<option value="event coordinator">Event Co-ordinator</option>
<option value="team captain">Team Captain</option>
<option value="team incharge">Team Incharge</option>
</select>
</div>
</div>
<div class="form-group" id='login-event-name' style='display: none;'> <label for="event_name">
<h6>Event Name</h6>
</label> <input type="text" list="listName" name="event_name" placeholder="Enter Event Name" class="form-control">
<datalist id="listName">
<?php
$events = mysqli_query($conn, "SELECT * FROM `eventdb`");
while ($event = mysqli_fetch_array($events)) {
?>
<option value="<?php echo $event['event_name'] ?>">
<?php echo $event['event_name'] ?>
</option>
<?php
}
?>
</datalist>
</div>
<div class="form-group" id='login-house-name' style='display: none;'> <label for="house_name">
<h6>House Name</h6>
</label> <input type="text" list="house_name" name="house_name" placeholder="Enter House Name" class="form-control">
<datalist id="house_name">
<?php
$events = mysqli_query($conn, "SELECT * FROM `housedb`");
while ($event = mysqli_fetch_array($events)) {
?>
<option value="<?php echo $event['name'] ?>">
<?php echo $event['name'] ?>
</option>
<?php
}
?>
</datalist>
</div>
<div class="form-group" id='login-event-regno' style='display: none;'>
<label for="inputRegNo">Register No</label>
<input type="text" name="reg_number" class="form-control" id="inputRegNo" placeholder="Reg No">
</div>
<div class="form-group" id='login-event-password' style='display: none;'>
<label for="inputPassword">Password</label>
<input type="password" name="password" class="form-control" id="inputPassword" placeholder="Password">
</div>
<button type="submit" name="submit" class="btn btn-login btn-primary">Login</button>
</form>
</div>
<div>
<svg width="67px" height="480px" viewBox="0 0 67 480" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Path</title>
<desc>Created with Sketch.</desc>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<path d="M11.3847656,-5.68434189e-14 C-7.44726562,36.7213542 5.14322917,126.757812 49.15625,270.109375 C70.9827986,341.199016 54.8877465,443.829224 0.87109375,578 L67,578 L67,-5.68434189e-14 L11.3847656,-5.68434189e-14 Z" id="Path" fill="#0ee1e7"></path>
</g>
</svg>
</div>
<div class="column" id="secondary">
<div class="sec-content">
<!-- <h2>Welcome Back!</h2>
<h3>Lorem ipsum dolor sit amet, consectetur adipiscing elit</h3> -->
</div>
</div>
</div>
</div>
</div>
</div>
<div class="hero-content">
<div class="container" style="margin:0;display:flex">
<div class="row">
<div class="col-md-12" style="
align-items: center;">
<div class="entry-header">
<div class="shadow">
<img src="public/images/logos/clg-logo.png" alt="" class="" width="180">
</div>
<h2 id="waves-text" style="filter: drop-shadow( 0px 0px 30px rgba(255, 255, 255, 1));;font-family: 'mountains';padding: 0;margin-bottom: 32px;">Waves 23</h2>
<div id="stage" style="margin-top: 64px;"></div>
<canvas id="text" width="800" height="200"></canvas>
<img style="margin-bottom: 24px;" src="public/images/logos/waves-logo.png" alt="" class="" width="280">
<input id="input" type="text" value="Waves'24 W" style="display: none;" />
</div>
<div class="col-md-12 countdown flex flex-wrap justify-content-between" data-date="2024/09/27">
<div class="col-md-12 flex-wrap" style="display:flex;justify-content:center">
<div class="countdown-holder">
<div class="dday"></div>
<label>Days</label>
</div>
<div class="countdown-holder">
<div class="dhour"></div>
<label>Hours</label>
</div>
<div class="countdown-holder">
<div class="dmin"></div>
<label>Minutes</label>
</div>
<div class="countdown-holder">
<div class="dsec"></div>
<label>Seconds</label>
</div>
</div>
</div>
<div class="col-md-12">
<div class="entry-footer">
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#commonRules">
Rules and Regulation
</button>
<a href="#events" class="btn current">See Events</a>
</div>
</div>
</div>
<div class="row">
</div>
</div>
</div>
</div>
<div class="content-section">
<div class="container">
<!-- <div class="row">
<div class="col-12">
<div class="lineup-artists-headline">
<div class="entry-title">
<p> </p>
<h2>The Lineup Artists-Headliners</h2>
</div>
<div class="lineup-artists">
<div class="lineup-artists-wrap flex flex-wrap">
<figure class="featured-image">
<a href="#"> <img src="public/images/black-chick.jpg" alt> </a>
</figure>
<div class="lineup-artists-description">
<div class="lineup-artists-description-container">
<div class="entry-title">
Jamila Williams
</div>
<div class="entry-content">
<p>Quisque at erat eu libero consequat tempus. Quisque mole stie convallis tempus. Ut semper purus metus, a euismod sapien sodales ac. Duis viverra eleifend fermentum. </p>
</div>
<div class="box-link">
<a href><img src="public/images/box.jpg" alt></a>
</div>
</div>
</div>
</div>
<div class="lineup-artists-wrap flex flex-wrap">
<div class="lineup-artists-description">
<figure class="featured-image d-md-none">
<a href="#"> <img src="public/images/mathew-kane.jpg" alt> </a>
</figure>
<div class="lineup-artists-description-container">
<div class="entry-title">
Sandra Superstar
</div>
<div class="entry-content">
<p>Quisque at erat eu libero consequat tempus. Quisque mole stie convallis tempus. Ut semper purus metus, a euismod sapien sodales ac. Duis viverra eleifend fermentum. </p>
</div>
<div class="box-link">
<a href="#"><img src="public/images/box.jpg" alt></a>
</div>
</div>
</div>
<figure class="featured-image d-none d-md-block">
<a href="#"> <img src="public/images/mathew-kane.jpg" alt> </a>
</figure>
</div>
<div class="lineup-artists-wrap flex flex-wrap">
<figure class="featured-image">
<a href="#"> <img src="public/images/eric-ward.jpg" alt> </a>
</figure>
<div class="lineup-artists-description">
<div class="lineup-artists-description-container">
<div class="entry-title">
DJ Crazyhead
</div>
<div class="entry-content">
<p>Quisque at erat eu libero consequat tempus. Quisque mole stie convallis tempus. Ut semper purus metus, a euismod sapien sodales ac. Duis viverra eleifend fermentum. </p>
</div>
<div class="box-link">
<a href="#"> <img src="public/images/box.jpg" alt></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div> -->
<div class="row" style="overflow: hidden;">
<div class="col-12">
<div class="lineup-artists-headline">
<div class="entry-title">
<p> </p>
<h2>Waves & Team</h2>
</div>
<div class="team-display">
<div class="col-md-5">
<h3 style="color: black;">
"Waves is the cultural extravaganza hosted by NSCET, a celebration dedicated to our vibrant student community. Join us to immerse yourself in a world of talent, creativity, and unforgettable experiences!" 🌊🎉</h3>
</div>
<div class="col-md-2"></div>
<div class="col-md-4" style="margin-top: 24px;padding: 52px;">
<div class="container-3dgalary">
<div id="carousel-3dgalary">
<figure><img src="public\images\house\DINO_THUNDERS.png" alt=""></figure>
<figure><img src="public\images\house\BLUE_BLASTERS.png" alt=""></figure>
<figure><img src="public\images\house\DRAGON_WARRIORS.png" alt=""></figure>
<figure><img src="public\images\house\VIOLET_VIPERS.png" alt=""></figure>
<figure><img src="public\images\house\PHOENIX_BLASTERS.png" alt=""></figure>
<figure><img src="public\images\house\ROSY_RIDERS.png" alt=""></figure>
<figure><img src="public\images\house\TIGER_THRASHERS.png" alt=""></figure>
<figure><img src="public\images\house\GALACTIC_STARS.png" alt=""></figure>
<figure><img src="public\images\logos\waves-logo.png" alt=""></figure>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row" id="events">
<div class="col-12">
<div class="the-complete-lineup">
<div class="entry-title">
<p> </p>
<h2>The Event Lineup</h2>
</div>
<div class="row the-complete-lineup-artists">
<?php
$events = mysqli_query($conn, "SELECT * FROM `eventdb` WHERE `gender`='COMMON'");
while ($event = mysqli_fetch_array($events)) {
?>
<div class="col-6 col-md-4 col-lg-3 artist-single dark-shadow" data-aos="zoom-in-up">
<figure class="featured-image">
<a data-toggle="modal" data-target=".<?php echo $event['event_id'] ?>"> <img src="<?php echo $event['image'] ?>" alt> </a>
<a href="#" class="box-link" type="button" class="btn btn-primary" data-toggle="modal" data-target=".<?php echo $event['event_id'] ?>"> <img src="public/images/box.jpg" alt> </a>
</figure>
<h2>
<?php echo $event['event_name'] ?>
</h2>
<h5>
<?php echo $event['event_date'] ?>
</h5>
<h6>
<?php echo $event['event_time'] ?>
</h6>
</div>
<?php
}
?>
</div>
</div>
</div>
</div>
<div class="row">
<div id="boysEvent" class="col-12">
<div class="the-complete-lineup">
<div class="entry-title">
<p> </p>
<h2>Exclusive for Boys</h2>
</div>
<div class="row the-complete-lineup-artists">
<?php
$events = mysqli_query($conn, "SELECT * FROM `eventdb` WHERE `gender`='BOYS'");
while ($event = mysqli_fetch_array($events)) {
?>
<div class="col-6 col-md-4 col-lg-3 artist-single dark-shadow" data-aos="zoom-in-up">
<figure class="featured-image">
<a data-toggle="modal" data-target=".<?php echo $event['event_id'] ?>"> <img src="<?php echo $event['image'] ?>" alt> </a>
<a data-toggle="modal" data-target=".<?php echo $event['event_id'] ?>" class="box-link"> <img src="public/images/box.jpg" alt> </a>
</figure>
<h2>
<?php echo $event['event_name'] ?>
</h2>
<h5>
<?php echo $event['event_date'] ?>
</h5>
<h6>
<?php echo $event['event_time'] ?>
</h6>
</div>
<?php
}
?>
</div>
</div>
</div>
</div>
<div class="row">
<div id="girlsEvent" class="col-12">
<div class="the-complete-lineup">
<div class="entry-title">
<p> </p>
<h2>Exclusive for Girls</h2>
</div>
<div class="row the-complete-lineup-artists">
<?php
$events = mysqli_query($conn, "SELECT * FROM `eventdb` WHERE `gender`='GIRLS'");
while ($event = mysqli_fetch_array($events)) {
?>
<div class="col-6 col-md-4 col-lg-3 artist-single dark-shadow" data-aos="zoom-in-up">
<figure class="featured-image">
<a data-toggle="modal" data-target=".<?php echo $event['event_id'] ?>"> <img src="<?php echo $event['image'] ?>" alt> </a>
<a data-toggle="modal" data-target=".<?php echo $event['event_id'] ?>" class="box-link"> <img src="public/images/box.jpg" alt> </a>
</figure>
<h2>
<?php echo $event['event_name'] ?>
</h2>
<h5>
<?php echo $event['event_date'] ?>
</h5>
<h6>
<?php echo $event['event_time'] ?>
</h6>
</div>
<?php
}
?>
</div>
</div>
</div>
</div>
</div>
<div class="homepage-next-events">
<div class="container">
<div class="row">
<div class="col-12">
<div class="entry-title">
<p> </p>
<h2>Our Events</h2>
</div>
</div>
</div>
</div>
<div class="next-event-slider-wrap">
<div class="swiper-container next-event-slider">
<div class="swiper-wrapper">
<?php
$events = mysqli_query($conn, "SELECT * FROM `eventdb`");
while ($event = mysqli_fetch_array($events)) {
?>
<div class="swiper-slide">
<div class="next-event-content">
<figure class="featured-image">
<img src="<?php echo $event['image'] ?>" alt>
<a href="#" data-toggle="modal" data-target=".<?php echo $event['event_id'] ?>" class="entry-content flex flex-column justify-content-center align-items-center">
<h3>
<?php echo $event['event_name'] ?>
</h3>
<p>
<?php echo $event['event_date'] . "<br>" . $event['event_time'] . "<br>" . $event['event_venue'] ?>
</p>
</a>
</figure>
</div>
</div>
<?php
}
?>
</div>
</div>
<div class="swiper-button-next">
<img src="public/images/button.png" alt>
</div>
</div>
</div>
<!-- <section class="our-schedule-area section-padding-100">
<div class="container">
<div class="row">
<div class="col-12">
<div class="section-heading-2 text-center wow fadeInUp" data-wow-delay="300ms">
<h2>Schedule Plan</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-12">
<div class="schedule-tab">
<ul class="nav nav-tabs wow fadeInUp" data-wow-delay="300ms" id="conferScheduleTab" role="tablist">
<li class="nav-item">
<a class="nav-link active" id="tuesday-tab" data-toggle="tab" href="#step-one" role="tab" aria-controls="step-one" aria-expanded="true">Tuesday <br> <span>September 26, 2023</span></a>
</li>
<li class="nav-item">
<a class="nav-link" id="wednesday-tab" data-toggle="tab" href="#step-two" role="tab" aria-controls="step-two" aria-expanded="true">Wednesday <br> <span>September 27, 2023</span></a>
</li>
<li class="nav-item">
<a class="nav-link" id="friday-tab" data-toggle="tab" href="#step-three" role="tab" aria-controls="step-three" aria-expanded="true">Friday <br> <span>September 29, 2023</span></a>
</li>
<li class="nav-item">
<a class="nav-link" id="saturday-tab" data-toggle="tab" href="#step-four" role="tab" aria-controls="step-three" aria-expanded="true">Saturday <br> <span>September 30, 2023</span></a>
</li>
</ul>
</div>
<div class="tab-content" id="conferScheduleTabContent">
<div class="tab-pane fade show active" id="step-one" role="tabpanel" aria-labelledby="monday-tab">
<div class="single-tab-content">
<div class="row">
<div class="col-12">
<?php
$events = mysqli_query($conn, "SELECT * FROM `eventdb` WHERE `event_date`='26/09/23'");
while ($event = mysqli_fetch_array($events)) {
?><div data-toggle="modal" data-target=".<?php echo $event['event_id'] ?>" class="single-schedule-area d-flex flex-wrap justify-content-between align-items-center wow fadeInUp" data-wow-delay="300ms">
<div class="single-schedule-tumb-info d-flex align-items-center">
<div class="single-schedule-tumb">
<img height="100px" width="100px" src="<?php echo $event['image'] ?>">
</div>
<div class="single-schedule-info">
<h6><?php echo $event['event_name'] ?></h6>
<p>Cordinators,
<br />
<?php $coordinators = explode("|", $event['event_cordinators']);
foreach ($coordinators as $letter => $index) {
echo '<span>' . $coordinators[$letter] . '<br /></span>';
}
?>
</p>
</div>
</div>
<div class="schedule-time-place">
<p><i class="zmdi zmdi-time"></i><?php echo $event['event_date'] ?> | <?php echo $event['event_time'] ?></p>
<p><i class="zmdi zmdi-map"></i> <?php echo $event['event_venue'] ?></p>
</div>
<a class="btn confer-btn">Detail <i class="zmdi zmdi-long-arrow-right"></i></a>
</div>
<?php
}
?>
</div>
</div>
</div>
</div>
<div class="tab-pane fade show" id="step-two" role="tabpanel" aria-labelledby="monday-tab">
<div class="single-tab-content">
<div class="row">
<div class="col-12">
<?php
$events = mysqli_query($conn, "SELECT * FROM `eventdb` WHERE `event_date`='27/09/23'");
while ($event = mysqli_fetch_array($events)) {
?><div data-toggle="modal" data-target=".<?php echo $event['event_id'] ?>" class="single-schedule-area d-flex flex-wrap justify-content-between align-items-center wow fadeInUp" data-wow-delay="300ms">
<div class="single-schedule-tumb-info d-flex align-items-center">
<div class="single-schedule-tumb">
<img height="100px" width="100px" src="<?php echo $event['image'] ?>">
</div>
<div class="single-schedule-info">
<h6><?php echo $event['event_name'] ?></h6>
<p>Cordinators,
<br />
<?php $coordinators = explode("|", $event['event_cordinators']);
foreach ($coordinators as $letter => $index) {
echo '<span>' . $coordinators[$letter] . '<br /></span>';
}
?>
</p>
</div>
</div>
<div class="schedule-time-place">
<p><i class="zmdi zmdi-time"></i><?php echo $event['event_date'] ?> | <?php echo $event['event_time'] ?></p>
<p><i class="zmdi zmdi-map"></i> <?php echo $event['event_venue'] ?></p>
</div>
<a class="btn confer-btn">Detail <i class="zmdi zmdi-long-arrow-right"></i></a>
</div>
<?php
}
?>
</div>
</div>
</div>
</div>
<div class="tab-pane fade show" id="step-three" role="tabpanel" aria-labelledby="monday-tab">
<div class="single-tab-content">
<div class="row">
<div class="col-12">
<?php
$events = mysqli_query($conn, "SELECT * FROM `eventdb` WHERE `event_date`='29/09/23'");
while ($event = mysqli_fetch_array($events)) {
?><div data-toggle="modal" data-target=".<?php echo $event['event_id'] ?>" class="single-schedule-area d-flex flex-wrap justify-content-between align-items-center wow fadeInUp" data-wow-delay="300ms">
<div class="single-schedule-tumb-info d-flex align-items-center">
<div class="single-schedule-tumb">
<img height="100px" width="100px" src="<?php echo $event['image'] ?>">
</div>
<div class="single-schedule-info">
<h6><?php echo $event['event_name'] ?></h6>
<p>Cordinators,
<br />
<?php $coordinators = explode("|", $event['event_cordinators']);
foreach ($coordinators as $letter => $index) {
echo '<span>' . $coordinators[$letter] . '<br /></span>';
}
?>
</p>
</div>
</div>
<div class="schedule-time-place">
<p><i class="zmdi zmdi-time"></i><?php echo $event['event_date'] ?> | <?php echo $event['event_time'] ?></p>
<p><i class="zmdi zmdi-map"></i> <?php echo $event['event_venue'] ?></p>
</div>
<a class="btn confer-btn">Detail <i class="zmdi zmdi-long-arrow-right"></i></a>
</div>
<?php
}
?>
</div>
</div>
</div>
</div>
<div class="tab-pane fade show" id="step-four" role="tabpanel" aria-labelledby="monday-tab">
<div class="single-tab-content">
<div class="row">
<div class="col-12">
<?php
$events = mysqli_query($conn, "SELECT * FROM `eventdb` WHERE `event_date`='30/09/23'");
while ($event = mysqli_fetch_array($events)) {
?><div data-toggle="modal" data-target=".<?php echo $event['event_id'] ?>" class="single-schedule-area d-flex flex-wrap justify-content-between align-items-center wow fadeInUp" data-wow-delay="300ms">
<div class="single-schedule-tumb-info d-flex align-items-center">
<div class="single-schedule-tumb">
<img height="100px" width="100px" src="<?php echo $event['image'] ?>">
</div>
<div class="single-schedule-info">
<h6><?php echo $event['event_name'] ?></h6>
<p>Cordinators,
<br />
<?php $coordinators = explode("|", $event['event_cordinators']);
foreach ($coordinators as $letter => $index) {
echo '<span>' . $coordinators[$letter] . '<br /></span>';
}
?>
</p>
</div>
</div>
<div class="schedule-time-place">
<p><i class="zmdi zmdi-time"></i><?php echo $event['event_date'] ?> | <?php echo $event['event_time'] ?></p>
<p><i class="zmdi zmdi-map"></i> <?php echo $event['event_venue'] ?></p>
</div>
<a class="btn confer-btn">Detail <i class="zmdi zmdi-long-arrow-right"></i></a>
</div>
<?php
}
?>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section> -->
<style>
.row>div {
padding: 0 4px !important;
}
img {
margin-top: 8px;
vertical-align: middle;
}
</style>
<div id="gallary" class="home-page-last-news">
<div class="container">
<div class="header">
<div class="entry-title">
<p> </p>
<h2>Our Waves'22</h2>
</div>
</div>
<div class="main">
<div class="gallery">
<div class="img">
<img src="public\images\galary\IMG_20230221_134347.jpg" alt="">
</div>
<div class="img">
<img src="public\images\galary2\IMG_20230221_130317.jpg" alt="">
</div>
<div class="img">
<img src="public\images\galary\IMG_20230221_134347.jpg" alt="">
</div>
<div class="img">
<img src="public\images\galary\IMG_20230221_140610.jpg" alt="">
</div>
<div class="img">
<img src="public\images\galary\IMG_20230221_141129.jpg" alt="">
</div>
<div class="img">
<img src="public\images\galary\SBD_0278.jpg" alt="">
</div>
<div class="img">
<img src="public\images\galary\IMG_20230221_161034.jpg" alt="">
</div>
<div class="img">
<img src="public\images\galary2\IMG_20230221_154406.jpg" alt="">
</div>
<div class="img">
<img src="public\images\galary\IMG_20230222_133306.jpg" alt="">
</div>
<div class="img">
<img src="public\images\galary2\IMG_20230228_121013.jpg" alt="">
</div>
<div class="img">
<img src="public\images\galary2\IMG_20230222_140922.jpg" alt="">
</div>
<div class="img">
<img src="public\images\galary\SBD_0762.jpg" alt="">
</div>
<div class="img">
<img src="public\images\galary\SBD_0110.jpg" alt="">
</div>
<div class="img">
<img src="public\images\galary\IMG_20230222_151824.jpg" alt="">
</div>
<div class="img">
<img src="public\images\galary\IMG_20230228_105338.jpg" alt="">
</div>
<div class="img">
<img src="public\images\galary\IMG_20230222_150822.jpg" alt="">
</div>
<div class="img">
<img src="public\images\galary\IMG_20230301_111333.jpg" alt="">
</div>
<div class="img">
<img src="public\images\galary2\IMG_20230221_134534.jpg" alt="">
</div>
<div class="img">
<img src="public\images\galary2\IMG_20230221_130317.jpg" alt="">
</div>
<div class="img">
<img src="public\images\galary2\IMG_20230221_154406.jpg" alt="">
</div>
<div class="img">
<img src="public\images\galary2\IMG_20230222_141607.jpg" alt="">
</div>
<div class="img">
<img src="public\images\galary2\IMG_20230222_151721.jpg" alt="">
</div>
</div>
</div>
<!--<div class="home-page-last-news-wrap">
<div class="container-fluid">
<div class="row">
<div class="col-lg-3 col-md-3 col-sm-6 col-xs-6">
<img src="public\images\galary\SBD_0766.jpg" class="img-fluid">
<img src="public\images\galary\IMG_20230221_134347.jpg" class="img-fluid">
<img src="public\images\galary\IMG_20230221_140610.jpg" class="img-fluid">
<img src="public\images\galary\IMG_20230221_141129.jpg" class="img-fluid">
<img src="public\images\galary\SBD_0278.jpg" class="img-fluid">
<img src="public\images\galary\IMG_20230221_161034.jpg" class="img-fluid">
<img src="public\images\galary\IMG_20230222_133306.jpg" class="img-fluid">
<img src="public\images\galary2\IMG_20230221_153901.jpg" class="img-fluid">
<img src="public\images\galary2\IMG_20230221_161258.jpg" class="img-fluid">
<img src="public\images\galary2\IMG_20230222_140922.jpg" class="img-fluid">
</div>
<div class="col-lg-3 col-md-3 col-sm-6 col-xs-6">
<img src="public\images\galary\SBD_0762.jpg" class="img-fluid">
<img src="public\images\galary\IMG_20230301_111323.jpg" class="img-fluid">
<img src="public\images\galary\IMG_20230222_151824.jpg" class="img-fluid">
<img src="public\images\galary\IMG_20230228_105338.jpg" class="img-fluid">
<img src="public\images\galary\IMG_20230222_150822.jpg" class="img-fluid">
<img src="public\images\galary\IMG_20230301_111333.jpg" class="img-fluid">
<img src="public\images\galary2\IMG_20230221_134534.jpg" class="img-fluid">
<img src="public\images\galary2\IMG_20230221_161258.jpg" class="img-fluid">
<img src="public\images\galary2\IMG_20230222_141607.jpg" class="img-fluid">