-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathassign.html
More file actions
34 lines (32 loc) · 1.13 KB
/
assign.html
File metadata and controls
34 lines (32 loc) · 1.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Match Assigner</title>
<link rel="stylesheet" href="assign.css">
</head>
<body>
<label for="match_key">Match Key</label>
<input id="match_key" type="text" value="#">
<br/>
<textarea rows="10" cols="40" id="members" placeholder="Line separated team members"></textarea>
<textarea rows="10" cols="40" id="positions" placeholder="Line separated scouting positions"></textarea>
<br/>
<label for="match_count"># of matches</label>
<input id="match_count" type="number">
<br/>
<label for="session_length">Preferred session length</label>
<input id="session_length" type="number">
<br/>
<label for="min_break">Minimum break length</label>
<input id="min_break" type="number">
<br/>
<button onclick="btn_go()">GO</button>
<button onclick="download()">Download as .csv</button>
<button onclick="downloadTable()">Download Table as .csv</button>
<button onclick="editMode()">Edit Mode</button>
<div id="output"></div>
<div id="errors"></div>
<script defer src="assign.js"></script>
</body>
</html>