forked from publu/quill-checkin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
52 lines (49 loc) · 2.01 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
<html>
<head>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta content="utf-8" http-equiv="encoding">
<meta name=viewport content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.2.9/semantic.min.css">
<link href="https://fonts.googleapis.com/css?family=Josefin+Sans:300|Montserrat|Open+Sans|Roboto" rel="stylesheet">
<link href="css/global.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="dont-print">
<canvas id="labelCanvas" width="520" height="299" style="border-style: none; display: none;"></canvas>
<p class="header-text">McHacks Check-In</p>
<table border="0" class="wth">
<tr>
<td>
<div class="ui icon input sb">
<input type="text" id="query" placeholder="Name or Email or Team">
<i class="search icon"></i>
</div>
</td>
<td style="padding-left:30px;">
<div class="ui negative basic button" onclick="doLogout();">
Logout
</div>
</td>
</tr>
</table>
<div class="hiddenfile">
<input class="hide" id="image-input" type="file" accept="image/*">
</div>
<div class="search-results">
<div class="ui relaxed divided items" id="results">
</div>
</div>
</div>
<img class="to-print" src="" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://ajax.microsoft.com/ajax/jquery.templates/beta1/jquery.tmpl.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.2.9/semantic.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/js-cookie/2.1.3/js.cookie.min.js"></script>
<script src="lib/jwt-decode.min.js"></script>
<script src="js/config.js"></script>
<script src="js/api.js"></script>
<script src="js/scanner.js"></script>
<script src="js/index.js"></script>
<script src="js/logout.js"></script>
</body>
</html>