-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (29 loc) · 1.02 KB
/
index.html
File metadata and controls
29 lines (29 loc) · 1.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Plant Recognition Quiz Trainer</title>
<link rel="stylesheet" href="/style.css">
</head>
<body>
<div>
<input id="file-input" type="file" accept=".pdf" multiple/>
<button id="file-button" type="button">Start!</button>
</div>
<canvas id="pdf-canvas"></canvas>
<div>
<button id="page-deny">I don't know</button>
<button id="page-display">Show text</button>
<button id="page-accept">I know</button>
</div>
<div>
<span id="score"></span>
<span id="percentage-score"></span>
</div>
<script src="/jquery-3.7.1.js"></script>
<script type="module" src="/pdfjs/pdf.mjs"></script>
<script type="module" src="/pdf-lib.mjs"></script>
<script type="module" src="/script.js"></script>
</body>
</html>