-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
42 lines (39 loc) · 1.66 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
<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>Free OCR inside your browser - process PDF files</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BmbxuPwQa2lc/FVzBcNJ7UAyJxM6wuqIj61tLrc4wSX0szH/Ev+nYRRuWlolflfl" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/tonsky/[email protected]/distr/fira_code.css">
<link rel="stylesheet" href="bundle.css">
</head>
<body>
<div class="container_box">
<div id="info">
<h4>Free OCR inside your browser</h4>
</div>
<div id="languages_div">
<select name="languages" id="languages-select" class="form-select">
</select>
<button type="button" id='add-language-button' class="btn btn-primary">Select Language</button>
<div id="selected-languages"></div>
</div>
<div id="box_and_progress_container">
<div id="box">
<div class="inner" id="input-container">
<span id="input-message">Drag & drop file or click here to select one.</span>
<input type="file" id="file-input" accept=".pdf">
</input>
</div>
</div>
<div id="progress">
<div id="progressMessage">
<span id="progressMessageSpan">Waiting...</span>
</div>
</div>
</div>
</div>
<script src='bundle.js'></script>
</body>
</html>