-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
54 lines (48 loc) · 1.79 KB
/
index.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
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>QR Code Scanner</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link rel="stylesheet" href="css/style.css">
<!-- include the library -->
<script src="https://unpkg.com/html5-qrcode"></script>
<script src="js/script.js"></script>
</head>
<body class="bg-light">
<div id="table-container">
<div class="align-middle">
<div class="container resized-container">
<div class="card px-2 py-3">
<div class="win text-center">
<h4 class="intro pt-2"><b>QR CODE SCANNER</b></h4>
</div>
<div class="row justify-content-center">
<div class="col-12">
<div id="qr-reader"></div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-12">
<table id="qr-result-table" class="table table-bordered table-striped table-hover mb-0">
<thead class="text-light">
<tr>
<th>Decoded Text</th>
<th>Action</th>
</tr>
</thead>
<tbody class="text-center" id="qr-result-body"></tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</html>