-
Notifications
You must be signed in to change notification settings - Fork 1
/
statistics.html
83 lines (81 loc) · 2.71 KB
/
statistics.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html lang="en" class="mdl-js">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="assets/favicon.ico" rel="icon">
<link href="assets/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/css/styles.css" rel="stylesheet">
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
<title>Codebreaker Web</title>
</head>
<body>
<section id="introduction">
<div class="container">
<div class="row fill-viewport align-items-center justify-content-center">
<div class="col-12 col-md-6">
<div class="row">
<div class="col-md-auto">
<h1 class="text-white title">Codebreaker 2018</h1>
</div>
</div>
<p class="lead text-white-70"> Top of Players:</p>
<hr class="mb-4">
<div class="table-responsive-md scores">
<table class="table table-striped table table-sm">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">Name</th>
<th scope="col">Level</th>
<th scope="col">Attempts Left</th>
<th scope="col">Hints Left</th>
<th scope="col">Date</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Player 1</td>
<td>Middle</td>
<td>8/10</td>
<td>3/3</td>
<td>2018.12.04 - 17:00:01</td>
</tr>
<tr>
<th scope="row">2</th>
<td>Player 1</td>
<td>Middle</td>
<td>8/10</td>
<td>3/3</td>
<td>2018.12.04 - 17:00:01</td>
</tr>
<tr>
<th scope="row">3</th>
<td>Player 1</td>
<td>Middle</td>
<td>8/10</td>
<td>3/3</td>
<td>2018.12.04 - 17:00:01</td>
</tr>
<tr>
<th scope="row">4</th>
<td>Player 1</td>
<td>Middle</td>
<td>8/10</td>
<td>3/3</td>
<td>2018.12.04 - 17:00:01</td>
</tr>
</tbody>
</table>
</div>
<hr class="mb-4">
<a class="btn btn-primary btn-lg" href="#" role="button">
Home
</a>
</div>
</div>
</section>
</body>
</html>