-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathview_runs.html
33 lines (30 loc) · 1.36 KB
/
view_runs.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta http-equiv="refresh" content="60" />
<title>
ND Replay Stats
</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" >
<link rel="stylesheet" href="https://cdn.datatables.net/1.10.18/css/jquery.dataTables.min.css" >
</head>
<body>
<a href="view_stats.html">CLICK ME TO GO TO THE SECRET STATS PAGE</a>
<div id="wins">
</div>
<div id="runs">
</div>
<div id="table">
</div>
<div class="text-muted text-center card-footer">
Project lives on <a href="https://github.com/sillypears/python-replay-parser/" target="_blank">Github</a>
</div>
<script src="https://code.jquery.com/jquery-3.4.0.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" ></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.24.0/moment.min.js" ></script>
<script src="https://cdn.datatables.net/1.10.18/js/jquery.dataTables.min.js" ></script>
<script type="text/javascript" src="view_runs.js"></script>
</body>
</html>