forked from jaredcraddock/schedulebuilder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (51 loc) · 1.67 KB
/
index.html
File metadata and controls
51 lines (51 loc) · 1.67 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="tableCSS.css">
<title>CU Schedule Builder</title>
</head>
<body>
<!-- jQuery and DataTables script -->
<script type="text/javascript" src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script type="text/javascript" src="https://cdn.datatables.net/1.10.13/js/jquery.dataTables.min.js"></script>
<!-- Schedule Table -->
<center><h1>Your Schedule</h1></center>
<table id="scheduleTable" class="display" width="100%"></table>
<!-- Week Table -->
<center><button id = "weekTableButton">Week at a Glance</button></center>
<div id = "weekTableContainer">
<center><h1>Week at a Glance</h1></center>
</div>
<!-- Course Table -->
<center><h1>Courses Offered: Fall 2017</h1></center>
<table id="courseTable" class="display" width="100%">
<thead>
<tr>
<th></th>
<th>CRN</th>
<th>SUBJ</th>
<th>CRS</th>
<th>TITLE</th>
<th>DAYS</th>
<th>STARTS</th>
<th>ENDS</th>
<th>ROOMS</th>
<th>INSTRUCTOR</th>
</tr>
<tr id="filters">
<th></th>
<th id="textSearchCRN">CRN</th>
<th id="selectSearchSUBJ">SUBJ</th>
<th id="textSearchCRS">CRS</th>
<th id="textSearchTITLE">TITLE</th>
<th id="selectSearchDAYS">DAYS</th>
<th id="selectSearchSTARTS">STARTS</th>
<th id="selectSearchENDS">ENDS</th>
<th id="textSearchROOMS">ROOMS</th>
<th id="textSearchINSTRUCTOR">INSTRUCTOR</th>
</tr>
</thead>
</table>
<script type="text/javascript" src="tables.js"></script>
</body>
</html>