-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (63 loc) · 1.7 KB
/
index.html
File metadata and controls
73 lines (63 loc) · 1.7 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Player List and Deck</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div>
<h3>Enter Player Names</h3>
<input type="text" id="playerNameInput" placeholder="Enter player name" />
<button onclick="addPlayer()">Add Player</button>
</div>
<div class="table-container">
<table id="playerTable">
<thead>
<tr>
<th colspan="12" id="draft-order">Draft order</th>
</tr>
</thead>
<tbody>
<tr id="draftersRow"></tr>
</tbody>
</table>
</div>
<h2 class="active-player">Active Player:</h1>
<div class="player-lists">
<div class="list goTime">
<h2>Remaining players</h2>
<ol id="remainingPlayersList"></ol>
<button onclick="randomizePlayers()">
<h2>Randomize Players</h2>
</button>
</div>
<div class="deck flexCenter">
<div class="flexRow inner">
<div class="flexCenter">
<button onclick="drawCard()">
<h2>Draw Card</h2>
</button>
<div class="card flexCenter" id="card">
<p id="mostRecentCard"></p>
</div>
</div>
<div>
<h2>Ledger</h2>
<ol id="ledger"></ol>
</div>
</div>
<div class="column">
<h2>Special cards</h2>
<ul id="rulesList"></ul>
</div>
</div>
<div class="list chilling">
<h2>Chilling Lounge</h2>
<ul id="movedPlayersList"></ul>
</div>
</div>
<script src="index.js"></script>
</body>
</html>