-
Notifications
You must be signed in to change notification settings - Fork 0
/
qrScanner.php
43 lines (34 loc) · 1.09 KB
/
qrScanner.php
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
<title>QR Scanner</title>
<?php include("header.php") ?>
<div class="container row-offcanvas row-offcanvas-left">
<div class="well column col-lg-12 col-sm-12 col-xs-12" id="content">
<div class="d-grid col-3 mt-3 mx-auto">
<button id="submitData" type="button" class="btn btn-success"> Click to Submit Data: 0</button>
</div>
<div class="row pt-3 pb-3 mb-3">
<div id="interactive" class="viewport">
<video autoplay="true" id="camera"></video>
</div>
</div>
<br>
<div class="row">
<select id="cameraSelect" class="form-select form-select mb-3" aria-label=".form-select-lg example">
</select>
</div>
<table class="table">
<thead>
<tr>
<th scope="col">Event Code</th>
<th scope="col">Match Code</th>
<th scope="col">Team Number</th>
<th scope="col">Scout</th>
<th scope="col">Delete</th>
</tr>
</thead>
<tbody id="qrValidationTable">
</tbody>
</table>
</div>
</div>
<?php include("footer.php") ?>
<script src="./scripts/qrHandler.js"></script>