-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschedule.php
More file actions
67 lines (58 loc) · 2.17 KB
/
Copy pathschedule.php
File metadata and controls
67 lines (58 loc) · 2.17 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Project</title>
<link rel="stylesheet" href="css/schedule.css">
</head>
<body>
<div id="headerdiv">
<?php require_once("header.php"); ?>
</div>
<div class="main-container"> <!-- NEW CONTAINER -->
<div class="container">
<div class="left-pane">
<!-- Year navigator -->
<div class="year-navigator">
<span id="currentYearDisplay"></span> <!-- This is crucial -->
<select id="yearSelect">
<option value="" disabled selected>Click to select a year</option>
</select>
</div>
<!-- Calendar navigation buttons -->
<div class="calendar-nav">
<button class="nav-button" id="prevMonth"><</button>
<div id="currentMonth"></div>
<button class="nav-button" id="nextMonth">></button>
</div>
<!-- Calendar grid -->
<div id="calendar-grid"></div>
<!-- Month-wise navigation container -->
<div class="navigation-container">
<div class="navigation">
<h3>Navigate Events by Month</h3>
<div id="year-display"></div>
<div id="month-list"></div>
</div>
</div>
<!-- All events put together container -->
<div class="all-events-container">
<h3>See All Our Events</h3>
<div class="event-list">
<ol id="event-list-all"></ol>
</div>
</div>
</div>
<!-- Right pane where events are displayed -->
<div class="right-pane">
<div id="eventList"></div>
</div>
</div>
<!-- Footer div -->
<div id="footerdiv">
<?php require_once("footer.php"); ?>
</div>
</div>
</div>
<script src="js/schedule.js"></script>
</body>
</html>