-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (44 loc) · 2.09 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
<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();">
<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>
<!-- The main page will eventually change so we wont have two search bars
so this is here for when that happens.
<div class="ml-auto">
<form class="form-inline">
<input class="form-control mr-sm-2" type="text" placeholder="Search">
<button class="btn btn-primary" type="button">Get Match Stats</button>
</form>
</div>-->
</nav>
<div class="center-div">
<h3 style="color: white">Enter Match Id</h3>
<div>
<input class="form-control" type="text" id="input" value="" placeholder="Search"></input>
</div>
<div>
<button class="btn btn-primary" type="button" onclick='getMatchDataById()'>Get Match Stats</button>
<button class="btn btn-primary" type="button" onclick='getListOfMatchIds()'>Get Match Ids</button>
<button class="btn btn-primary" type="button" onclick='getListOfMatches()'>Get Matches</button>
</div>
<!--<button class="btn btn-primary" type="button" onclick='getPlayers()'>Get Players</button>-->
</div>
<script src="config.js"></script>
<script src="stats.js"></script>
<script src="api.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>