-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
42 lines (42 loc) · 1.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite App</title>
</head>
<body>
<div class="section">
<h3>QR code Url</h3>
<input id="image-url" type="text" placeholder="QR code url here" />
<input type="button" id="parse-image-url" value="Decode" />
<p>
QR code content:
<span id="content1"></span>
</p>
</div>
<div class="section">
<h3>QR code Base64</h3>
<textarea
id="image-base64"
placeholder="QR code base64 code here"
></textarea>
<input type="button" id="parse-image-base64" value="Decode" />
<p>
QR code content:
<span id="content2"></span>
</p>
</div>
<div class="section">
<h3>Upload QR code</h3>
<div id="form">
<input type="file" name="file" id="file" />
</div>
<p>
QR code content:
<span id="content3"></span>
</p>
</div>
<script type="module" src="/example/index.ts"></script>
</body>
</html>