-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (38 loc) · 1.19 KB
/
index.html
File metadata and controls
41 lines (38 loc) · 1.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>QR Code Parser</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="container" id="drop-area">
<h1>QR Code Parser</h1>
<input type="file" id="fileInput" accept="image/*">
<div class="content">
<h2>Decoded QR Code Text:</h2>
<pre id="qrText"></pre>
</div>
<div class="content">
<h2>PPInfo Details:</h2>
<table id="ppInfoTable">
<tr>
<th>Merchant Name</th>
<th>Account Type</th>
<th>Merchant ID</th>
<th>Amount</th>
</tr>
<tr>
<td id="merchantName"></td>
<td id="accountType"></td>
<td id="merchantId"></td>
<td id="amount"></td>
</tr>
</table>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/jsqr@1.4.0/dist/jsQR.min.js"></script>
<script src="script.js"></script>
</body>
</html>