-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathuser.html
More file actions
54 lines (43 loc) · 1.7 KB
/
user.html
File metadata and controls
54 lines (43 loc) · 1.7 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Scout | Falcon Scout</title>
<link rel="stylesheet" href="user.css">
<script src="user.js"></script>
<script src="https://cdn.rawgit.com/davidshimjs/qrcodejs/gh-pages/qrcode.min.js"></script>
</head>
<body>
<h1>Falcon Scout</h1>
<br/>
<div class="match">
<h3>Match Number</h3>
<button class="input-button" id="match" onclick="subtraction(this)">-</button>
<input id="matchinput" type="text" value="1"/>
<button class="input-button" id="match" onclick="addition(this)">+</button>
</div>
<br/>
<div class="cones">
<h3>Number of Cones</h3>
<button class="input-button" id="cones" onclick="subtraction(this)">-</button>
<input id="conesinput" type="text" value="1"/>
<button class="input-button" id="cones" onclick="addition(this)">+</button>
</div>
<br/>
<div class="cubes">
<h3>Number of Cubes</h3>
<button class="input-button" id="cubes" onclick="subtraction(this)">-</button>
<input id="cubesinput" type="text" value="1"/>
<button class="input-button" id="cubes" onclick="addition(this)">+</button>
</div>
<br/>
<!-- Generate QR Code -->
<button onclick="generateQRCode()">Generate QR Code</button>
<br/>
<div class="qrcode" id="qrcode"></div>
<br/>
<h1></h1>
</body>
</html>