-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.html
30 lines (30 loc) · 1.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>MRZ Scanner (Passport and ID Card)</title>
<meta name="theme-color" content="#006FA8"/>
<link rel="manifest" href="manifest.webmanifest"/>
<link href="favicon.ico" rel="icon" sizes="192x192"/>
<link rel="shortcut icon" href="favicon.ico"/>
<link rel="apple-touch-icon" href="favicon.ico"/>
<link rel="stylesheet" href="./src/style.css"/>
</head>
<body>
<div id="document-display">
<img src="#" id="document"/>
<div id="controls">
<textarea id="document-content" rows="3"></textarea>
<textarea id="document-check" rows="3"></textarea>
</div>
<input type="file" id="fileInput" name="fileInput" accept="image/*"/>
<span id="progress"></span>
<button id="scan" title="Scan">📷</button>
<button id="rotate" title="Rotate">↶</button>
<button id="check" title="Check">✔</button>
</div>
<script src="https://cdn.jsdelivr.net/gh/naptha/tesseract.js@v1.0.19/dist/tesseract.js"></script>
<script type="module" src="./src/index.js"></script>
</body>
</html>