This repository has been archived by the owner on Feb 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathleague_table.html
76 lines (74 loc) · 2.32 KB
/
league_table.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>League Table</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
rel="stylesheet"
type="text/css"
media="screen"
href="/css/bootstrap.css"
/>
<link
rel="stylesheet"
type="text/css"
media="screen"
href="/css/league_table.css"
/>
<link
rel="stylesheet"
type="text/css"
media="screen"
href="/css/style.css"
/>
</head>
<body>
<!-- League Table :) -->
<div class="container container-fluid">
<div class="row alert-secondary alert mb-3">
<div class="col-4">
<h3>Please select league</h3>
<select id="league_select">
<option value="3" name="league_select"
>Bellean Football League III</option
>
<option value="2" name="league_select">Epson League II</option>
<option value="1" name="league_select">Epson League I</option>
</select>
</div>
<div class="col-4">
<p id="league_name"></p>
<span id="league_logo"></span>
Showing latest season standings
<!-- <button class="btn btn-success" onclick="view.displayLeagueTable()">Show latest seasons table</button> -->
</div>
</div>
<!-- New Row -->
<div class="row">
<div class="col-md-12 border-success">
<table
class="table table-dark shadow table-hover text-center"
id="table"
>
<thead class="thead-light">
<th scope="col" class="py-3">Pos.</th>
<th scope="col" class="py-3">Club</th>
<th scope="col" class="py-3">Played</th>
<th scope="col" class="py-3">W</th>
<th scope="col" class="py-3">L</th>
<th scope="col" class="py-3">D</th>
<th scope="col" class="py-3">GF</th>
<th scope="col" class="py-3">GA</th>
<th scope="col" class="py-3">GD</th>
<th scope="col" class="py-3">Pts.</th>
</thead>
<tbody id="tbody"></tbody>
</table>
</div>
</div>
</div>
<script src="/league_table.js"></script>
</body>
</html>