-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (62 loc) · 2.26 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
<title>Magic - Tournament Management</title>
<script src="jquery.js"></script>
<script src="main.js"></script>
<script src="ui.js"></script>
</head>
<body>
<div id="container">
<h1>Magic - Tournament Management</h1>
<section id="secPlayers">
<h2>
Players, Add:
<form id="frmPlayer">
<input type="text" id="txtPlayer">
<input type="submit" value="add">
</form>
</h2>
<table id="tabPlayers">
<thead>
<tr>
<th>Rank</th>
<th class="name">Name</th>
<th class="score"><abbr title="Match Points">MP</abbr></th>
<th class="score"><abbr title="Opponents Match-Win-Rate">OMWR</abbr></th>
<th class="score"><abbr title="Game Points">GP</abbr></th>
<th class="score"><abbr title="Opponents Game-Win-Rate">OGWR</abbr></th>
</tr>
</thead>
</table>
<button id="shufflePlayers">shuffle</button>
</section>
<section id="secMatches">
<h2>
Matches, Round:
<button id="roundPrev">«</button>
<input type="number" id="numRound" min="1" step="1" value="1">
<button id="roundNext">»</button>
</h2>
<form id="frmMatches">
<table id="tabMatches">
<thead>
<tr>
<th>Seat</th>
<th class="name">Player</th>
<th class="score">← wins</th>
<th class="score">draws</th>
<th class="score">wins →</th>
<th class="name">Player</th>
</tr>
</thead>
</table>
<input type="submit" value="save">
</form>
</section>
</div>
</div>
</body>
</html>