-
Notifications
You must be signed in to change notification settings - Fork 0
/
account.html
53 lines (47 loc) · 1.3 KB
/
account.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>
<link rel="stylesheet" href="styles.css">
<head>
<meta charset="UTF-8">
<title>Account</title>
</head>
<body>
<h1>Account Page</h1>
<p id="greeting"></p>
<br>
<h2>Attendance Information</h2>
Click the button to generate your attendance information.
<br><br>
<button type="submit" id="generate">Generate Attendance</button>
<button type="submit" class="cancel" id="clear">Clear Table</button>
<br>
<table id="sptable">
<tr>
<th>College Name</th>
<th>Start Date</th>
<th>End Date</th>
</tr>
</table>
<br><br>
<h2>Add Attendance</h2>
Fill out the information below to add new attendance.
<div class="scontainer" id="addattend">
<br>
College Name: <select placeholder="College Name" id="cname" required><option value=""></option></select>
<input type = "date" hidden> <!--to avoid weird html removal-->
<br>
Start Date: <input type="date" placeholder="Start Date" id="dstart" required>
<br>
End Date: <input type="date" placeholder="End Date" id="dend" required>
<br>
<p id="notice"></p>
<button type="submit" id="add">Add Attendance</button>
<br>
</div>
<script>
//Javascript files called
require('./account.js')
require('./renderer.js')
</script>
</body>
</html>