-
Notifications
You must be signed in to change notification settings - Fork 0
/
admin.html
68 lines (48 loc) · 1.73 KB
/
admin.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html>
<head>
<title>Tournament Overlay Controls</title>
<link rel="stylesheet" type="text/css" href="./styles/style.css">
</head>
<body>
<div class="container">
<h1>Event Management</h1>
<label for="event-name-input">Event name:</label>
<input type="text" id="event-name-input" value="New Year 2024 Tournament" placeholder="New Year 2024 Tournament">
<br>
<label for="bracket-input">Challonge Bracket URL:</label>
<input type="text" id="bracket-input" placeholder="challonge.com/url">
<br>
<br>
<br>
<h1>Game Management</h1>
<br>
<label for="max-games">Number of Games:</label>
<input type="number" id="max-games-input" min="1" value="3">
<br>
<label for="team1-wins-input">Team 1 Wins</label>
<input type="number" id="team1-wins-input" min="0" value="0">
<br>
<label for="team2-wins-input">Team 2 Wins</label>
<input type="number" id="team2-wins-input" min="0" value="0">
<br>
<br>
<h1>Team Management</h1>
<br>
<div class="team-input">
<label for="team1-selector">Team 1</label>
<select id="team1-selector"></select>
<label for="team2-selector">Team 2</label>
<select id="team2-selector"></select>
</div>
<div class="team-input">
<button class="button" id="add-team-button">Add Team</button>
<input type="text" id="team-name-input" placeholder="Team Name">
</div>
<h2>Team List</h2>
<ul id="team-list"></ul>
<br>
</div>
<script src="./scripts/admin.js"></script>
</body>
</html>