This repository has been archived by the owner on Mar 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (66 loc) · 2.59 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
<!DOCTYPE html>
<html>
<head>
<title>CS 3560 Course Enrollment System</title>
<link rel="stylesheet" href="styles/style.css"/>
<script src="scripts/index.js" defer>import Axios from 'axios';</script>
<script src="https://kit.fontawesome.com/3816b98563.js" crossorigin="anonymous"></script>
</head>
<!--Navigation Bar-->
<div id="nav">
<a href="index.html" class="nav-logo right"><img src="assets/logo.png" width="150"></a>
<a href="drop.html" class="nav-item left">DROP</a>
<a href="search.html" class="nav-item left">SEARCH</a>
<a href="index.html" class="nav-item left">MY CLASS SCHEDULE</a>
</div>
<body>
<div class= "row1">
<div class="scol">
<h2>Your Shopping Cart</h2>
</div>
<div class="scol floatright">
<a href="enroll.html"><button id="enrollBtn" onclick="enroll()">Enroll</button></a>
</div>
<div class ="subrow">
<div class="col">Open <i class="fas fa-check"></i></i></div>
<div class="col">Closed <i class="fas fa-times"></i></div>
<div class="col">Waitlist <i class="fas fa-list"></i></div>
</div>
</div>
<div class='shoppingCart'>
<table id='shoppingCart'>
<tr>
<th id='courseCol'>Course</th>
<th>Schedule</th>
<th id='roomCol'>Room</th>
<th>Instructor</th>
<th id='unitsCol'>Units</th>
<th id='statusCol'>Status</th>
<th id='deleteCol'>Delete</th>
</tr>
</table>
</div>
<div class= "row3">
<div class="scol">
<h2>Your Class Schedule</h2>
</div>
<div class ="subrow">
<div class="col">Enrolled <i class="fas fa-check"> </i></div>
<div class="col">Dropped <i class="fas fa-times"></i></div>
<div class="col">Waitlisted <i class="fas fa-list"></i></div>
</div>
</div>
<div class="classSchedule">
<table id='classSchedule'>
<tr>
<th id='courseCol'>Course</th>
<th>Schedule</th>
<th id='roomCol'>Room</th>
<th>Instructor</th>
<th id="unitsCol">Units</th>
<th id="statusCol">Status</th>
</tr>
</table>
</div>
</body>
</html>