forked from maccman/motivation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dashboard.html
46 lines (43 loc) · 1.74 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
<!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 class="converter">
<h3 class="open">Open Converter</h3>
<h2 class="title">Unicode <-> Zawgyi converter</h2>
<h4 class="title">Unicode</h4>
<textarea id="unicode" class="unicode-textbox textbox"></textarea>
<h4 class="title">Zawgyi</h4>
<textarea id="zawgyi" class="zawgyi-textbox textbox"></textarea>
<textarea class="copy-textarea" style="width:0px;height:0px;" hidden="hidden"></textarea>
<button class="copyFacebook">Copy for Facebook</button>
<p style="position:absolute;bottom:0;color:white;"><a href="https://github.com/Rabbit-Converter/Rabbit" style="color:lightblue;">Rabbit</a> converter is used for Zawgyi<->Unicode convertion.</p>
<h3 class="copy-result is-paused"></h3>
</div>
<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">AGE</h1>
<h2 class="count">{{year}}<sup>.{{milliseconds}}</sup></h2>
</script>
<script src="js/jquery.js"></script>
<script src="js/handlebars.js"></script>
<script src="js/rabbit.js"></script>
<script src="app/app.js"></script>
</body>
</html>