forked from maccman/motivation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dashboard.html
35 lines (29 loc) · 855 Bytes
/
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
<!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">
</head>
<body>
<div id="app"></div>
<script id="dob-template" type="text/x-handlebars-template">
<form>
<h1 id="dob" class="age-label">Quando você nasceu?</h1>
<footer>
<input type="date" name="dob" id="dob">
<button type="submit">Motivar</button>
</footer>
<form>
</script>
<script id="age-template" type="text/x-handlebars-template">
<h1 class="age-label">Idade</h1>
<h2 class="count">{{year}}<sup>.{{milliseconds}}</sup></h2>
</script>
<script src="js/handlebars.js"></script>
<script src="app/app.js"></script>
</body>
</html>