forked from hychen/lifeistooshort-chrome-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dashboard.html
executable file
·43 lines (35 loc) · 1.08 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>New Tab</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/nv.d3.css">
</head>
<body>
<div id="app"></div>
<script id="dob-template" type="text/x-handlebars-template">
<form>
<h1 id="dob" class="age-label">When were you born?</h1>
<footer>
<input type="date" name="dob" id="dob">
<button type="submit">Motivate</button>
</footer>
<form>
</script>
<script id="age-template" type="text/x-handlebars-template">
<h1 class="age-label">{{title}}</h1>
<h2 class="count">{{year}}<sup>.{{milliseconds}}</sup></h2>
</script>
<div id='chart' style="width:59%">
<svg style='height:80px'> </svg>
</div>
<script src="js/d3.v3.min.js"></script>
<script src="js/nv.d3.min.js"></script>
<script src="js/handlebars.js"></script>
<script src="app/app.js"></script>
</body>
</html>