-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathupload.html
More file actions
39 lines (35 loc) · 879 Bytes
/
upload.html
File metadata and controls
39 lines (35 loc) · 879 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Upload & Solve</title>
</head>
<body>
<h1>Upload QP & MS</h1>
<div>
<label>QP PDF:</label>
<input type="file" id="qpFile" accept="application/pdf">
</div>
<div>
<label>MS PDF:</label>
<input type="file" id="msFile" accept="application/pdf">
</div>
<div>
<label>Time (minutes):</label>
<input type="number" id="setTime" placeholder="45">
</div>
<button id="startBtn">Start</button>
<hr>
<div id="solveArea" style="display:none;">
<h2>Solving Interface</h2>
<iframe id="qpViewer" style="width:100%; height:400px; border:1px solid #ccc;"></iframe>
<div>
Time left: <span id="timeLeft">00:00</span>
<button id="pauseBtn">Pause</button>
</div>
<div id="questionsSection"></div>
<button id="submitBtn">Submit</button>
</div>
<script src="upload.js"></script>
</body>
</html>