-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (25 loc) · 1.12 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="./client/styles.css">
<title>Knockout Tournament</title>
</head>
<body>
<!-- Edit me. -->
<!-- For tests to pass, the IDs of the elements below MUST NOT change. -->
<input id="teamsPerMatch" placeholder="Teams per match" type="number"/>
<input id="numberOfTeams" placeholder="Number of teams" type="number"/>
<button id="start">Start</button>
<button id="PauseUnPauseButton">Pause</button>
<span id="winner"></span>
<div id="app">APP Will Be Loaded Here...</div>
</body>
<script type="text/javascript" src="./client/common/define.js"></script>
<script type="text/javascript" src="./client/common/AjaxPooler.js"></script>
<script type="text/javascript" src="./client/common/ajax.js"></script>
<script type="text/javascript" src="./client/common/parallelExec.js"></script>
<script type="text/javascript" src="./client/common/sequentialExec.js"></script>
<script type="text/javascript" src="./client/logic/Tournament.js"></script>
<script type="text/javascript" src="./client/ui/TournamentUI.js"></script>
<script type="text/javascript" src="./client/client.js"></script>
</html>