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 pathenroll.html
60 lines (52 loc) · 1.86 KB
/
enroll.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Enroll</title>
<link rel="stylesheet" href="styles/style.css"/>
<script src="scripts/enroll.js" defer></script>
<script src="https://kit.fontawesome.com/3816b98563.js" crossorigin="anonymous"></script>
</head>
<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>Enroll</h2>
</div>
</div>
<div>
<div class ="subrow">
<div class="col">Open <i class="fas fa-check"> </i></div>
<div class="col">Closed <i class="fas fa-times"></i></div>
<div class="col">Waitlisted <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>
</tr>
<!--sample table row-->
<!--
<tr>
<td>CS 1300-04</td>
<td>TuTh 10:00AM - 11:50AM</td>
<td>5 - 222</td>
<td>F. Smith</td>
<td>4</td>
<td id='openStatus'>✓</td>
</tr>
-->
</table>
</div>
</body>
</html>