forked from fproulx/shc-covid19-decoder
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
44 lines (39 loc) · 1.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
href="https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800&display=swap"
rel="stylesheet"
/>
<title>shc-covid19-decoder</title>
<script async type="text/javascript" src="./build/main.js"></script>
</head>
<body class="antialiased">
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<div>
<button id="startButton">Start</button>
<button id="resetButton">Reset</button>
</div>
<div>
<video
id="video"
width="300"
height="200"
style="border: 1px solid gray; transform: scaleX(-1)"
></video>
</div>
<div id="sourceSelectPanel" style="display: none">
<label for="sourceSelect">Change video source:</label>
<select id="sourceSelect" style="max-width: 400px"></select>
</div>
<div id="verifyPanel">
<input type="checkbox" id="verifyCheckbox" checked="true"></input>
<label for="verifyCheckbox">Verify signature</label>
</div>
<label>Result:</label>
<pre><code id="result"></code></pre>
</body>
</html>