-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
55 lines (50 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
52
53
54
55
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" rel="stylesheet"/>
<link href="/static/css/cyborg.min.css" rel="stylesheet"/>
<link href="//cdn.datatables.net/plug-ins/1.10.6/integration/bootstrap/3/dataTables.bootstrap.css" rel="stylesheet"/>
<script src="//code.jquery.com/jquery-1.11.2.min.js"></script>
<script src="//cdn.datatables.net/1.10.6/js/jquery.dataTables.min.js"></script>
<script src="//cdn.datatables.net/plug-ins/1.10.6/integration/bootstrap/3/dataTables.bootstrap.js"></script>
<script src="/static/js/index.js"></script>
<title>PGCR</title>
<script>
$(document).ready(function () {
$('#gamertag').change(function () {
getCharacters();
})
})
</script>
</head>
<body>
<div class="container">
<div class="jumbotron">
<h1>PGCR</h1>
<p>Enter your gamertag, select a character and then see your most recent
<strong>P</strong>ost <strong>G</strong>ame <strong>C</strong>arnage <strong>R</strong>eport</p>
</div>
<form id="pgcrForm" method="GET" action='' onsubmit="generateQuery()">
<div class="form-group">
<label for="gamertag">Gamertag</label>
<input type="text" class="form-control" id="gamertag" required />
</div>
<div class="form-group">
<label for="characters">Characters</label>
<table id="characters" class="table">
<thead>
<tr>
<th id="checkHead">Check</th>
<th id="emblemHead">Emblem</th>
<th id="levelHead">Level</th>
<th id="classHead">Class</th>
</tr>
</thead>
</table>
</div>
<button type="submit" class="btn btn-default">Submit</button>
</form>
</div>
</body>
</html>