-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (54 loc) · 2.09 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon"/>
<title>Google Analytics Visualizer</title>
<link rel="stylesheet" type="text/css" href="styles/app.css">
<link rel="apple-touch-icon" href="images/icon57.png" />
<link rel="apple-touch-icon" sizes="72x72" href="images/icon72.png" />
<link rel="apple-touch-icon" sizes="114x114" href="images/icon114.png" />
<link rel="apple-touch-icon" sizes="144x144" href="images/icon144.png" />
<meta name="mobile-web-app-capable" content="yes">
</head>
<body>
<header>
<ul id="topMenu">
<li><label for="accounts">Account: </label><select id="accounts">
<option value="-1" disabled="disabled">Select...</option>
</select></li>
<li><label for="webProperties">Web Property: </label><select id="webProperties">
<option value="-1" disabled="disabled">Select...</option>
</select></li>
<li><label for="profiles">View: </label><select id="profiles">
<option value="-1" disabled="disabled">Select...</option>git
</select></li>
<li>
<button id="run">Run</button>
<input id="realtime" type="checkbox"/><label for="realtime">realtime</label>
</li>
<li>
<div id="spinner" style="display: none;">
<div class="rect1"></div>
<div class="rect2"></div>
<div class="rect3"></div>
<div class="rect4"></div>
<div class="rect5"></div>
</div>
</li>
</ul>
</header>
<section class="content">
<div id="canvas">
<div>
<ul id="from" class='rows'></ul>
<ul id="to" class='rows'></ul>
</div>
<div id="barcont">
</div>
</div>
</section>
<footer></footer>
<script src="./build/main.js"></script>
</body>
</html>