forked from gatolteam/gatol-html
-
Notifications
You must be signed in to change notification settings - Fork 1
/
dashboard.html
58 lines (49 loc) · 1.65 KB
/
dashboard.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
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<title>Game-A-Thon of Learning</title>
<link rel="icon" type="image/png" href="images/gamecontroller-icon.png">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
<script src="js/jquery.min.js"></script>
<script src="js/gatol.js"></script>
<script src="js/dashboard.js"></script>
<script type="text/javascript">
// This is a jQuery convention to say that once all the files
// load, the function GameAThon.start() should run.
// This function is defined in the index.js
$(function() {
DashBoard.start();
});
</script>
</head>
<body>
<div id="dashboard_header" class="dashboard_header">
<img src="images/gamecontroller-icon.png">
<header id="dashboard_title">
User Dashboard
</header>
<div class="right">
<button id="logout" class="white_button">Logout</button>
<button id="create">Create Game</button>
<button id="add">Add Game</button>
</div>
<div class="clear_float">
</div>
</div>
<div id="dashboard_container" class="dashboard container">
<div class="inner_title">
Ready Games
</div>
<div>
<ul id="games_list" class="inner_container">
<li><a href="#sample_game_1">Sample Game 1</a></li>
<div class="fullbar"></div>
<li><a href="#sample_game_2">Sample Game 2</a></li>
<div class="fullbar"></div>
</ul>
</div>
</div>
</body>
</html>