-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbox.html
More file actions
41 lines (41 loc) · 2.2 KB
/
Copy pathbox.html
File metadata and controls
41 lines (41 loc) · 2.2 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
30
31
32
33
34
35
36
37
38
39
40
41
<!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">
<link rel="stylesheet" href="css/box-styles.css">
<script src="js/app.js" defer></script>
<link rel="shortcut icon" type ="image/x-icon" href="images/tablogo.png">
<title>Submission Code</title>
</head>
<body>
<img src="images/checkmark1.gif" alt="" srcset="" style="display: none;" id="checkmark-gif">
<form action="" id="submitForm">
<h1>Enter Submission Code:</h1><br>
<div class="container">
<input type="text" class="num" maxlength="1" required onkeypress="return /[0-9]/i.test(event.key)" autofocus>
<input type="text" class="num" maxlength="1" required onkeypress="return /[0-9]/i.test(event.key)">
<input type="text" class="num" maxlength="1" required onkeypress="return /[0-9]/i.test(event.key)">
<input type="text" class="num" maxlength="1" required onkeypress="return /[0-9]/i.test(event.key)">
<input type="text" class="num" maxlength="1" required onkeypress="return /[0-9]/i.test(event.key)">
<input type="text" class="num" maxlength="1" required onkeypress="return /[0-9]/i.test(event.key)">
<button id="openModalButton" onclick="runPostJson('confirm')"><a href="#modal-opened" class="link-1" id="modal-closed"> > </a></button>
<div class="container2" id="modal-opened">
<div class="modal">
<div class="details">
<h1 class="title">Confirm Submission</h1>
</div>
<p class="txt" id="user_text"><b>Name: <br> Course code: <br> Section: <br> Unit number: </b></p>
<a href="#modal-closed" class="link-2"></a>
<div class="banner">
<p id="last_submitted_element">Last submission date: </p>
</div>
<button type="reset" class="btn-false" name=""></button>
<button type="submit" class="btn-true" name=""></button>
</div>
</div>
</div>
</form>
</body>
</html>