-
Notifications
You must be signed in to change notification settings - Fork 0
/
stats.html
60 lines (53 loc) · 2.07 KB
/
stats.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
<html>
<head>
<title>Riteforge</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css" integrity="sha384-PsH8R72JQ3SOdhVi3uxftmaW6Vc51MKb0q5P2rRUpPvrszuE4W1povHYgTpBfshb" crossorigin="anonymous">
<link rel="stylesheet" href="main.css">
</head>
<body class="body" onload="clearMatchIdInput();getStats();">
<nav class="navbar navbar-expand-sm navbar-dark">
<ul class="navbar-nav">
<li class="nav-item active">
<a class="nav-link" href="index.html"><h3>Riteforge</h3></a>
</li>
</ul>
<div class="ml-auto">
<form class="form-inline">
<input id="input" class="form-control mr-sm-2 statsPageInput" type="text" placeholder="Search">
<button class="btn btn-primary" type="button" onclick="getMatchDataById();">Get Match Stats</button>
</form>
</div>
</nav>
<div>
<a id="mapName" style="color: white"></a>
</div>
<div class="center-div">
<div class="container">
<div class="row">
<div class="col">
<a id="playerOneStats" style="color: white"></a>
</div>
<div class="col">
<a id="playerTwoStats" style="color: white"></a>
</div>
</div>
<div class="row">
<div class="col">
<a id="PlayerThreeStats" style="color: white"></a>
</div>
<div class="col">
<a id="playerFourStats" style="color: white"></a>
</div>
</div>
</div>
</div>
<script src="config.js"></script>
<script src="api.js"></script>
<script src="stats.js"></script>
<script src="data.js"></script>
<script src="https://code.jquery.com/jquery-3.2.1.js" integrity="sha256-DZAnKJ/6XZ9si04Hgrsxu/8s717jcIzLy3oi35EouyE=" crossorigin="anonymous"></script>
</body>
</html>