-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (48 loc) · 1.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Walk-In Ticketing System</title>
<meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles.css">
<script src="sketch.js"></script>
</head>
<body onload = "setup()">
<div id = "head_form">
<header class = "w3-container w3-teal">
<H1 id = "h1_title" style="text-align: center">
<!-- dynamically added -->
</H1>
<H2 id = "h2_title" style="text-align: center">
<!-- dynamically added -->
</H2>
</header>
<div style="margin:auto; width:66%; ">
<div class = "w3-container">
<p id = "form_message" style="height:20px; text-align: center"></p>
<label class = "w3-text-deep-orange" id = "label_container"></label>
<br>
<button class = "w3-btn w3-deep-orange" onclick = "addForm()"> SUBMIT </button>
<button class = "w3-btn w3-deep-orange" onclick = "clearForm()"> CLEAR </button>
</div>
</div>
</div>
<br></br>
<div class = "w3-panel w3-border w3-light-grey" style="overflow-y: auto; ">
<h3 style = "float:left" id = "walk-in_date"> Walk-Ins Today </h3>
<p style = "float:right" id = "walk-in_count">Count</p>
<table class = "w3-table w3-border w3-hoverable" id = "table_checkins">
<thead>
<tr>
<!-- dynamically added -->
</tr>
</thead>
<tbody>
<!-- dynamically added -->
</tbody>
</table>
</div>
<footer class = "w3-container w3-teal w3-bottom">
<h5></h5>
</footer>
</body>
</html>