-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (68 loc) · 3.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>WOMF Helper</title>
<meta property="og:title" content="WOMF Helper">
<meta property="og:description" content="An helpful tool for WOMF hosts.">
<meta property="og:url" content="https://dirain1700.github.io/WOMF/">
<meta property="og:type" content="article">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="preload" as="style" href="https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500&display=swap">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500&display=swap" media="print" onload="this.media='all'">
<link href="https://play.pokemonshowdown.com/style/battle-log.css" rel="stylesheet" type="text/css">
<link href="style.css" rel="stylesheet" type="text/css">
</head>
<header>
<h1>WOMF Host box</h1>
</header>
<body>
<div style="margin: auto; padding: 5%;">
<div style="width: 100%;">
<div id="toolbox">
<h2>Toolbox</h2>
<div class="infobox">
<ul>
<li><button type="button" class="button tool" id="copyplayer">Copy player list</button></li>
<li><button type="button" class="button tool" id="addplayer">Add player</button></li>
<li><button type="button" class="button tool" id="removeplayer">Remove player</button></li>
<li><button type="button" class="button tool" id="addround">Add round</button></li>
<li><button type="button" class="button tool" id="removeround">Remove round</button></li>
<li><button type="button" class="button tool" id="cleardata">Clear data</button></li>
</ul>
</div>
</div>
<p id="players">Players(0): </p>
<div id="tableparent">
<table id="table" border=1 cellspacing=0>
<tr>
<th id="users" rowspan=2>Users</th>
<th rowspan=2 >Status</th>
<th colspan=1>Points</th>
</tr>
<tr>
</tr>
</table>
</div>
<div id="files">
<h3>Exports</h3>
<div class="infobox">
<ul>
<li><a class="button tool" id="downloadjson" href="#" download="#.json">Download table data as JSON</a></li>
<li><a class="button tool" id="downloadcsv" href="#" download="#.csv">Download table data as CSV</a></li>
</ul>
</div>
</div>
</div>
</div>
<script src="index.js"></script>
</body>
<footer>
<ul id="footer">
<li><a href="https://github.com/Dirain1700/WOMF">GitHub Repository</a> | </li>
<li><a href="https://github.com/Dirain1700/WOMF/blob/master/LICENCE">Licence<a></a></li>
<br>
<li>©︎ 2023 Dirain All rights reserved.</li>
</footer>
</html>