-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscan-repeated.html
More file actions
50 lines (42 loc) · 1.16 KB
/
scan-repeated.html
File metadata and controls
50 lines (42 loc) · 1.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Repeated Scans</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<!-- common styles -->
<link rel="stylesheet" type="text/css" href="common.css"/>
<!-- page-specific style -->
<style>
dialog {
margin: auto;
}
.button-bar {
margin-top: 8px;
display: flex;
flex-direction: row;
gap: 8px;
}
</style>
</head>
<body>
<main class="wrapper">
<header class="top-bar">
<h3>Repeated Scans</h3>
<a href="/">EXIT</a>
</header>
<div class="barcode-scanner">
<!-- BarcodeReader will live here -->
</div>
</main>
<dialog id="confirmScanDialog">
<p>You have scanned <span id="numScanned"></span> barcodes.</p>
<p>Scanned code: <b id="scannedCode"></b></p>
<div class="button-bar">
<button id="continueScanning">CONTINUE</button>
<button id="finishScanning">FINISH</button>
</div>
</dialog>
<script type="module" src="scan-repeated.js"></script>
</body>
</html>