-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
80 lines (61 loc) · 2.41 KB
/
index.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
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html>
<head>
<title>Civ VI Drafter</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<link rel="stylesheet" href="style.css">
<!-- favicon -->
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico"/>
</head>
<body>
<div class="column" id="column1">
<h1>Civ VI Drafter</h1>
<label for="switch">Night Mode: </label><button type="button" onclick="themeToggle()">Toggle</button>
<br><br>
<label for="numberOfPlayers">Number of players:</label>
<select name="numberOfPlayers" id="numberOfPlayers">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
<option value="9">9</option>
<option value="10">10</option>
<option value="11">11</option>
<option value="12">12</option>
</select><br><br>
<label for="numberOfLeaders">Number of leaders per player:</label>
<select name="numberOfLeaders" id="numberOfLeaders">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
</select><br><br>
<h2>Game Type</h2>
<input type="radio" id="baseGameRadio" name="paywall" value="none" onclick="updateBannedLeaders()" checked>
<label for="baseGame">Base Game</label><br>
<input type="radio" id="riseAndFallRadio" name="paywall" value="Rise and Fall" onclick="updateBannedLeaders()">
<label for="riseAndFall">Rise and Fall</label><br>
<input type="radio" id="gatheringStormRadio" name="paywall" value="Gathering Storm" onclick="updateBannedLeaders()">
<label for="gatheringStorm">Gathering Storm</label><br><br>
<!--<h2>Settings</h2>
<input type="checkbox" id="duplicateCivs" name="duplicateCivs" value="duplicateCivs">
<label for="duplicateCivs"> Allow duplicate civs</label><br>
<input type="checkbox" id="duplicateLeaders" name="duplicateLeaders" value="duplicateLeaders">
<label for="duplicateLeaders"> Allow duplicate leaders</label><br><br>--><br>
<button type="button" onclick="playersSelected()">Confirm :)</button><br><br>
<ul id="playerList"></ul>
<button type="button" id="draftButton" onclick="draft()" hidden>Draft!</button><br><br>
</div>
<div class="column" id="column2">
<h2>Banned Leaders</h2>
<div id="bannedLeadersList">
</div>
</div>
<script src="./main.js?version=2"></script>
</body>
</html>