-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (48 loc) · 2.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Premove Percent</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/noUiSlider/15.7.0/nouislider.css"
integrity="sha512-MKxcSu/LDtbIYHBNAWUQwfB3iVoG9xeMCm32QV5hZ/9lFaQZJVaXfz9aFa0IZExWzCpm7OWvp9zq9gVip/nLMg=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>Premove Percent</h1>
<main>
<div id="username-page">
<form id="username-form">
<div id="player-input">
<label for="username" id="username-label">Add Player:</label>
<input type="text" id="username">
<button type="submit">Find</button>
</div>
<progress value="0" min="0" aria-hidden></progress>
</form>
</div>
<div id="results-page">
<form id="filter-form" aria-hidden></form>
<div id="game-data"></div>
<div id="move-data">
<div id="total-moves"></div>
<div id="average-time-move"></div>
<div id="median-time-move"></div>
<div id="premove-percent"></div>
<div id="time-per-move" class="graph"></div>
<div id="time-vs-move-number" class="graph"></div>
<div id="time-vs-time" class="graph"></div>
</div>
</div>
<div id="download"></div>
</main>
<script src="https://cdn.plot.ly/plotly-2.18.2.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/noUiSlider/15.7.0/nouislider.min.js"
integrity="sha512-UOJe4paV6hYWBnS0c9GnIRH8PLm2nFK22uhfAvsTIqd3uwnWsVri1OPn5fJYdLtGY3wB11LGHJ4yPU1WFJeBYQ=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
<script src="app.js"></script>
</body>
</html>