-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (27 loc) · 710 Bytes
/
index.html
File metadata and controls
29 lines (27 loc) · 710 Bytes
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
<html>
<head>
<title>
Book you sport and ZIO!
</title>
<link rel="stylesheet" href="styles.css">
<script type="text/javascript" src="app.js"></script>
</head>
<body>
<br>
<br>
<div>
<form>
<input type="button" value="Check-in with your QR Code" class = "qr" onclick="checkin()">
<input type="file" id="path" name="qrCode">
</form>
</div>
<form id="subscribe" autocomplete="off">
<label> Name </label>
<input type="text" id="name" size="30"/> <br> <br>
<label> Email </label>
<input type="text" id="email" size="30"/> <br> <br>
<input class= "btn" type="button" value="Book your spot!" onclick="subscribe()"/>
</form>
</div>
</body>
</html>