blob: 1117176a366f79177e56aad58efbf239da9440de (
plain) (
blame)
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
81
82
83
84
85
86
87
88
89
90
91
92
|
<!DOCTYPE html>
<html lang="en" data-theme="light">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Match Up!</title>
</head>
<body>
<section class="section">
<nav class="navbar" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<div class="navbar-item"><img src="icon.png"></div>
<div class="navbar-item">Match Up</div>
</div>
<div class="navbar-end">
<div class="field is-grouped is-grouped-right">
<button class="button is-medium is-dark" id="timer-dec" value="-0.5"><i class="fa-solid fa-minus" value="-0.5"></i></button>
<input class="input is-medium is-dark" id="timer-display" type="text" readonly></input>
<button class="button is-medium is-dark" id="timer-inc" value="0.5"><i class="fa-solid fa-plus" value="0.5"></i></button>
<button class="button is-medium is-dark" id="timer-start"><i class="fa-solid fa-play"></i></button>
<button class="button is-medium is-dark" id="timer-stop"><i class="fa-solid fa-stop"></i></button>
</div>
</div>
</nav>
<div class="container">
<section class="section">
<table class="table is-fullwidth">
<thead>
<tr><th colspan="5"><div id="game_description"></div></th></tr>
<tr>
<th>Court</th>
<th colspan='2' style="text-align: center;">Team 1</th>
<th colspan='2' style="text-align: center;">Team 2</th>
</tr>
</thead>
<tbody id="game_list"></tbody>
</table>
</section>
<section class="section">
<div class="field is-grouped is-grouped-centered">
<button class="button is-medium is-dark" id="propose">Propose</button>
<div class="select is-medium is-dark">
<select name="skill" id="skill">
<option value="10">All Levels</option>
<option value="5">2 Levels</option>
<option value="3">3 Levels</option>
<option value="1">Skill Based</option>
</select>
</div>
<button class="button is-medium is-dark" id="confirm">Confirm</button>
<button class="button is-medium is-danger" id="reset">Reset</button>
</div>
</section>
<section class="section">
<h1 class="title">Courts</h1>
<div id="court_list" class="button-grid"></div>
</section>
<section class="section">
<h1 class="title">Regulars</h1>
<div id="regular_list" class="button-grid"></div>
</section>
<section class="section">
<h1 class="title">Guests</h1>
<div id="guest_list" class="button-grid"></div>
</section>
<section class="section">
<h1 class="title">Player Update</h1>
<div id="player-load" class="file is-danger has-name is-boxed">
<label class="file-label">
<input class="file-input" type="file" name="players" accept=".csv"/>
<span class="file-cta">
<span class="file-icon">
<i class="fa-solid fa-upload"></i>
</span>
<span class="file-label"> Update players... </span>
</span>
<span class="file-name"> No file selected... </span>
</label>
</div>
</section>
</div>
</section>
<script src="src/main.js" type="module"></script>
</body>
<footer class="footer">
<div class="content has-text-centered">
<p><strong>Match Up</strong> made with ❤️ by <a href="https://karanj.com">Karan</a>.</p>
<p>The source code is licensed <a href="https://creativecommons.org/licenses/by-sa/4.0/deed.en">CC BY-SA 4.0</a>.</p>
<p>Logo from <a href="https://www.flaticon.com/free-icons/shuttle-cock" title="shuttle cock icons">Flaticon</a>.</p>
</div>
</footer>
</html>
|