-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (62 loc) · 2.6 KB
/
Copy pathindex.html
File metadata and controls
67 lines (62 loc) · 2.6 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>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>University Schedule Builder</title>
<link rel="stylesheet" href="./css/styles.css">
</head>
<body>
<div class="container">
<header>
<div class="header-content">
<div class="header-text">
<h1>UConn Schedule Builder</h1>
</div>
<div class="logo-container">
<img src="images/uconn-husky-logo.png" alt="UConn Husky Logo" class="uconn-logo">
</div>
</div>
</header>
<div class="app-container">
<div class="schedule-builder">
<div class="filter-section">
<h3>Find Courses</h3>
<div class="filter-options">
<select id="department">
<option value="">All Departments</option>
</select>
<select id="level">
<option value="">All Levels</option>
<option value="1000">1000 Level</option>
<option value="2000">2000 Level</option>
<option value="3000">3000 Level</option>
<option value="4000">4000 Level</option>
</select>
<input type="text" id="search" placeholder="Search courses...">
</div>
</div>
<div class="course-list" id="courseList">
<div class="loading">
<p>Loading courses...</p>
</div>
</div>
<div class="schedule-display">
<h3>Your Weekly Schedule</h3>
<div class="schedule-grid" id="scheduleGrid">
<!-- Schedule grid will be populated by JavaScript -->
</div>
</div>
<div class="action-buttons">
<button class="btn-primary" id="saveSchedule">Save Schedule</button>
<button class="btn-secondary" id="clearSchedule">Clear Schedule</button>
<a href="map.html" class="btn-secondary">View Campus Map</a>
</div>
</div>
</div>
</div>
<script src="js/courses.js"></script>
<script src="js/schedule.js"></script>
<script src="js/app.js"></script>
</body>
</html>