generated from microsoft/space-jam-a-new-legacy-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (63 loc) · 2.24 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
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">
<link rel="stylesheet" href="styles.css">
<script type="text/javascript" src="main.js">
</script>
<title>Tune Squad Coaches App</title>
</head>
<body>
<main>
<h1><img style="vertical-align:middle" src="images/SpaceJamANewLegacyLogo.png"><br>Water Break App</h1>
</main>
<div id="gameSetup" class="gameSetup">
<div id="uploadStats" class="topColumn">
<p class="topTitle">Upload your game_stats.csv file here</p>
<input type="file" id="playerData">
<script type="text/javascript">
document.getElementById('playerData')
.addEventListener('change', function() {
var playerNamesFile;
var fr=new FileReader();
fr.onload=function(){
playerStatsFile=fr.result;
processPlayers(playerStatsFile);
}
fr.readAsText(this.files[0]);
})
</script>
</div>
<div id="gameButton" class="topColumn">
<p class="topTitle"></p>
<button type="button" id="start" class="start" onclick="startNextQuarter()">Start the Game!</button>
</div>
<div id="avePER" class="topColumn">
<p class="topTitle">Average PER:</p>
<p class="topTitle" id="averagePER"></p>
</div>
</div>
<div id="gamePlay" class="gamePlay">
<div id="bench" class="column">
<div class="timer">Water Break</div>
<div id="playersOnBench"></div>
<p class="title">BENCH</p>
</div>
<div id="court" class="column">
<div id="timer" class="timer">TIME: 00:00</div>
<p id="quarter" class="subtitle"></p>
<div id="playersOnCourt"></div>
<p class="subtitle" id="currentPER"></p>
<p class="title">COURT</p>
</div>
<div id="stats" class="column">
<div id="playerCards"><table id="playerTable"></table></div>
<p class="title">STATS</p>
</div>
</div>
</body>
<footer style="text-align: center;">
© 2020 Warner Bros. Ent. All Rights Reserved
</footer>
</html>