-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
61 lines (56 loc) · 1.87 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
56
57
58
59
60
61
<!DOCTYPE html>
<html>
<head>
<title>how's it hanging?</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="css/bootstrap.css" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
</head>
<body>
<!-- Topbar
================================================== -->
<div class="topbar" >
<div class="topbar-inner">
<div class="container">
<a class="brand" href="#">statsdash</a>
<form class="pull-right">
<label for="show_legend"><input id="show_legend" type="checkbox"> show legends</label>
<select id="from-select">
<option>-1hour</option>
<option>-6hour</option>
<option>-24hour</option>
<option>-7day</option>
<option>-30day</option>
</select>
<input type="button" id="refresh" value="refresh">
</form>
</div>
</div>
</div>
<!-- Graphs
================================================== -->
<div id="graph-app"></div>
<legend>
<p>h : show help menu</p>
<p>r : reload graphs</p>
<p>l : toggle graph legends</p>
</legend>
<script type="text/template" id="graph-template">
<img class="graph">
<form>
<fieldset>
<div><label>Title: </label><input class="title" value="<%= title %>"></div>
<div><label>Data: </label><textarea class="target"><%= target.join(' | ') %></textarea></div>
<div><button class="btn primary">done</button></div>
</fieldset>
</form>
</script>
<script src="js/libs/jquery.min.js"></script>
<script src="js/libs/underscore.js"></script>
<script src="js/libs/backbone-min.js"></script>
<script src="js/libs/backbone-localstorage.js"></script>
<script src="js/app.config.js"></script>
<script src="js/app.js"></script>
</body>
</html>