-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
91 lines (85 loc) · 3.03 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<!--<link rel="icon" href="./favicon.ico" />-->
<meta
name="description"
content="Companion Website for Overlord Discord Bot"
/>
<title>Overlord Bot Website</title>
<script defer="defer" src="./scripts/main.js" type="module"></script>
<link href="./styles/main.css" rel="stylesheet" />
</head>
<body>
<div id="display">
<div id="header">
<h1>Overlord <span>Degree Planner</span></h1>
<span id="logged-in">
<button id="logout" title="Logout">
</button>
<select id="scheduleSelect">
</select>
</span>
</div>
<div>
<div id="loginContainer">
<form id="login">
<h2>Login</h2>
<input type="text" id="userid" name="userid" value="" placeholder="User Id" required>
<button type="submit" id="userLogin">Login</button>
</form>
</div>
<div id="content">
<div id="main">
<h2>Plan</h2>
<div>
<label for="courses">Add course</label>
<select name="courses" id="courses">
<option value="None">None</option>
</select>
<label for="semester">When have you taken this course? </label>
<select name="courses" id="semester">
<option value="None">None</option>
<option value="0">Freshman Fall</option>
<option value="1">Freshman Spring</option>
<option value="2">Sophomore Fall</option>
<option value="3">Sophomore Spring</option>
<option value="4">Junior Summer</option>
<option value="5">Junior Fall</option>
<option value="6">Senior Fall</option>
<option value="7">Senior Spring</option>
</select>
<button id="submit" type="submit">Add</button>
</div>
<div>
<label for="semester">Delete Course</label>
<select name="courses" id="deleted">
<option value="None">None</option>
</select>
<button id="delete">Delete</button>
</div>
</div>
<div id="schedules">
<h2>Schedule</h2>
<table id="freshman-fall" style="width:60%">
</table>
<table id="freshman-spring" style="width:60%">
</table>
<table id="sophomore-fall" style="width:60%">
</table>
<table id="sophomore-spring" style="width:60%">
</table>
<table id="junior-summer" style="width:60%">
</table>
<table id="junior-fall" style="width:60%">
</table>
<table id="senior-fall" style="width:60%">
</table>
<table id="senior-spring" style="width:60%">
</table>
</div>
</div>
</div>
</div>
</body>