-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (48 loc) · 1.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css" />
<link rel="stylesheet" href="css/style.css" />
<title>Access List</title>
</head>
<body>
<main>
<section class="section">
<div class="container is-max-widescreen">
<form id="themePicker" class="theme-picker">
<fieldset>
<input type="radio" name="theme" value="dark" class="dark" />
<input type="radio" name="theme" value="light" class="light" />
</fieldset>
</form>
<h1 class="title">Access List</h1>
<div id="week" class="week mb-5"></div>
<div class="is-flex">
<div class="select mb-3 is-rounded">
<select id="selectClass">
<option value="">All classes</option>
</select>
</div>
<div class="ml-3">
<input type="date" id="date" class="date-picker p-2" />
<button id="clear" class="p-2 is-hidden">x</button>
</div>
</div>
<table id="classData" class="table is-bordered is-striped is-fullwidth">
<thead>
<th>Class</th>
<th>Week</th>
<th>Next Course</th>
<th>Starting Date</th>
</thead>
<tbody></tbody>
</table>
</div>
</section>
</main>
<script src="js/script.js" type="module"></script>
</body>
</html>