-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheckin.html
62 lines (56 loc) · 2.24 KB
/
checkin.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<script type="text/javascript" src="static/js/jquery-2.2.2.min.js"></script>
<link href="static/css/basscss.min.css" rel="stylesheet">
<link href='https://fonts.googleapis.com/css?family=Arvo' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Quicksand' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="/static/css/main.css">
<title>Login With DesignCraft</title>
</head>
<body>
<div>
<div class="p1" id="header">
<div id="header-wrap" class="col-8 mx-auto flex flex-center center">
<p class="flex-auto white arvo">DesignCraft</p>
<img src="/static/images/logo.png" alt="DesignCraft Logo" />
<p class="flex-auto white arvo">Event</p>
</div>
</div>
<div class="p2 white" id="login">
<div class="center mx-auto flex flex-center px3">
<div class="flex-auto">
</div>
<div class="flex-auto mr2">
<h2>Users</p>
<p>
<input style="width: 100%; height: 100%; font-size:28px;" type="text" list="users" id="userinput"/>
<datalist id="users">
</datalist>
</p>
</div>
<div class="flex-auto ml2">
<h2>RFID</h2>
<p>
<input style="width: 100%; height: 100%; font-size:28px;" type="text" id="rfid">
</p>
</div>
<div class="flex-auto">
</div>
</div>
<div class="mx-auto center">
<button class="btn btn-primary center" onclick="associate()">Associate</button>
</div>
<p class="center confirm py2">Success! You can hand off the BioBracelet to the user.</p>
<div id="user-table" class="mt1 mx-auto center col-11">
<!-- <p>Search for users by name. Once you have a user, click RFID then scan a BioBracelet. With the bracelet number in the box, click associate. User is now checked in. Clear the name to start with the next user.
</p> -->
</div>
</div>
<div id='foot'>
</div>
</div>
<script type="text/javascript" src="static/js/checkin.js"></script>
</body>
</html>