-
Notifications
You must be signed in to change notification settings - Fork 0
/
groupGenerator.html
35 lines (30 loc) · 1.23 KB
/
groupGenerator.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Semaphore Court</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<h1>Jury Group Generation</h1>
<h4 id="juryGroupTitle">Group Generation</h4>
<h5 id="juryGroupDescription"></h5>
<form id="juryForm">
<!-- <label for="caseName">Court Case Name:</label>
<input type="text" id="caseName" maxlength="50" required>
<label for="caseID">Case ID:</label>
<input type="number" id="caseID" max="999" required>
-->
<label for="treeDepth">Tree Depth:</label>
<input type="number" id="treeDepth" max="99" required>
<label for="casePicture">Case Picture:</label>
<input type="file" id="casePicture" accept="image/*" required>
<input type="submit" value="Submit">
</form>
<!-- Will display the submitted case here -->
<div id="submittedCase"></div>
<button id="nextBtn" style="display:none;">Next</button>
<script type="module" src="/dist/groupGenerator.js"></script>
</body>
</html>