-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathindex.html
More file actions
79 lines (62 loc) · 3.91 KB
/
index.html
File metadata and controls
79 lines (62 loc) · 3.91 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html manifest="offline.manifest">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>countrack.me - build good habits.</title>
<meta name="description" content="Countrack.me - Track your activities, build good habits." />
<link rel="shortcut icon" href="favicon.png" type="image/x-icon"/>
<link rel="stylesheet" type="text/css" href="css/cssnormalize-min.css" />
<link rel="stylesheet" type="text/css" href="css/fontello-embedded.css" />
<link rel="stylesheet" type="text/css" href="css/countrack.css" />
<!-- start Mixpanel --><script type="text/javascript">(function(e,b){if(!b.__SV){var a,f,i,g;window.mixpanel=b;a=e.createElement("script");a.type="text/javascript";a.async=!0;a.src=("https:"===e.location.protocol?"https:":"http:")+'//cdn.mxpnl.com/libs/mixpanel-2.2.min.js';f=e.getElementsByTagName("script")[0];f.parentNode.insertBefore(a,f);b._i=[];b.init=function(a,e,d){function f(b,h){var a=h.split(".");2==a.length&&(b=b[a[0]],h=a[1]);b[h]=function(){b.push([h].concat(Array.prototype.slice.call(arguments,0)))}}var c=b;"undefined"!==
typeof d?c=b[d]=[]:d="mixpanel";c.people=c.people||[];c.toString=function(b){var a="mixpanel";"mixpanel"!==d&&(a+="."+d);b||(a+=" (stub)");return a};c.people.toString=function(){return c.toString(1)+".people (stub)"};i="disable track track_pageview track_links track_forms register register_once alias unregister identify name_tag set_config people.set people.set_once people.increment people.append people.track_charge people.clear_charges people.delete_user".split(" ");for(g=0;g<i.length;g++)f(c,i[g]);
b._i.push([a,e,d])};b.__SV=1.2}})(document,window.mixpanel||[]);
mixpanel.init("bc8266699f57a571584f562e0f77431b");</script><!-- end Mixpanel -->
</head>
<body>
<div class="app">
<header class='container'>
<h1 class='brand'>countrack<span>.me</span></h1>
<a href="javascript:void(0);" class="menu-icon button-purple"><i class='icon-menu'></i></a>
</header>
<section class='io action-mode container'>
<a class="button-purple" href="javascript:void(0);" id="addActivity"> <em>+</em> Add new activity to track</a>
<form>
<section class='row'>
<input type="text" placeholder="Name (e.g. Workout)" name="activityName" />
<label for="nature"><input type="checkbox" checked="checked" id="nature" name="nature"> Good </label>
</section>
<section class='row'>
<div class="icons">
<i class='icon-book' title='Book'></i>
<i class='icon-briefcase' title='Briefcase'></i>
<i class='icon-beer' title='Beer'></i>
<i class='icon-camera' title='Camera'></i>
<i class='icon-coffee' title='Coffee'></i>
<i class='icon-clock' title='Clock'></i>
<i class='icon-glass' title='Glass'></i>
<i class='icon-flight' title='Flight'></i>
<i class='icon-food' title='Food'></i>
<i class='icon-moon' title='Moon'></i>
<i class='icon-music' title='Music'></i>
<i class='icon-video' title='Video'></i>
</div>
<div class="row actions">
<a href="javascript:void(0);" class="button-purple" id="saveActivity">✔ Save</a>
<a href="javascript:void(0);" class="button-grey" id="cancelActivity">✘ Cancel</a>
</div>
</section>
</form>
</section>
<section class='info'>
</section>
<section class='day-summary container'>
</section>
<section class='activity-list container'>
</section>
</div>
<script src='https://cdn.firebase.com/v0/firebase.js'></script>
<script src="js/require.js" data-main="js/main-built"></script>
</body>
</html>