-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (42 loc) · 1.4 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
<!DOCTYPE html>
<html lang="en" class="no-js">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Club Track | Season 2016/17</title>
<meta name="description" content="" />
<meta name="keywords" content="" />
<meta name="author" content="Seb Blaszczyk" />
<link rel="icon" href="favicon.ico">
<link rel="stylesheet" type="text/css" href="stylesheets/styles.css" />
</head>
<body>
<header class="toolbar">
<span id="logo"><strong>Club Track</strong> : Season 2016/17</span>
</header>
<section id="choose-club">
<!-- Choose Competition -->
<button id="get-competitions" class="button large-button">Choose Your Competition</button>
<div id="competitions">
<ul id="competitions-list" class="options-list"></ul>
</div>
<!-- Choose Club -->
<div id="clubs" class="hidden">
<h2 class="club-title"></h2>
<ul id="clubs-list" class="options-list"></ul>
<button id="back-to-competitions" class="button large-button">Go back and select another Competition</button>
</div>
<!-- View Club -->
<div id="view-club" class="hidden">
</div>
</section>
<!-- <section id="dashboard">
<div id="club-info">
<div id="fixtures">
</div>
</div>
</section> -->
<script type="text/javascript" src="js/control.js"></script>
</body>
</html>