-
Notifications
You must be signed in to change notification settings - Fork 0
/
soundtracked2.html
executable file
·235 lines (198 loc) · 8.39 KB
/
soundtracked2.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Soundtracked</title>
<link href="css/todos.css" media="all" rel="stylesheet" type="text/css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<link href="css/starter-template.css" rel="stylesheet">
<style>
@font-face {
font-family: TokyoOneSolid;
src: url(fonts/Tokyo-OneSolid.otf);
}
@font-face {
font-family: Deftone;
src: url(fonts/DEFTONE.ttf);
}
.tokyocustomfont {
font-family: TokyoOneSolid;
font-size: 30px;
color: white;
}
.rock {
font-family: Deftone;
font-size: 30px;
color: #e50041;
}
</style>
<script src="https://code.jquery.com/jquery-2.0.3.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<script src="js/underscore.js"></script>
<script src="https://www.parsecdn.com/js/parse-1.2.13.min.js"></script>
<script src="js/todos.js"></script>
<script>
function openWindowWithPost(mood){
window.open("mapview.html?mood="+ mood,"_self");
}
</script>
</head>
<body alink="ffffff" bgcolor="ffffff" link="999999" text="#ffffff" vlink="999999">
<!-- Todo App Interface -->
<div id="todoapp">
<div class="title">
<h1 class="tokyocustomfont" style="background-color: #e50041; color: white;">SOUNDTRACKED</h1>
</div>
<table cellpadding="0" cellspacing="0" height="100%" width="100%">
<tbody><tr><td align="center" valign="middle">
<table cellpadding="0" cellspacing="0" height="630" width="357">
<tbody><tr><td align="center" valign="middle">
<center>
<div class="content">
</div>
</center>
</td>
</tr></tbody></table>
</td>
</tr></tbody></table>
</div>
<div id="credits">
Learn more about <a href='http://devpost.com/software/soundtracked'>Soundtracked</a>.
</div>
<!-- Templates -->
<script type="text/template" id="login-template">
<header id="header"></header>
<div class="login">
<form class="login-form">
<h2>Log In</h2>
<div class="error" style="display:none"></div>
<input type="text" id="login-username" placeholder="Username" />
<input type="password" id="login-password" placeholder="Password" />
<button>Log In</button>
</form>
<form class="signup-form">
<h2>Sign Up</h2>
<div class="error" style="display:none"></div>
<input type="text" id="signup-username" placeholder="Username" />
<input type="password" id="signup-password" placeholder="Create a Password" />
<button>Sign Up</button>
</form>
</div>
</script>
<script type="text/template" id="get-mood-template">
<div id="user-info">
Signed in as <%= Parse.User.current().escape("username") %> (<a href="#" class="log-out">Log out</a>)
</div>
<div class="starter-template">
<button type="button" class="btn btn-lg btn-block" onclick="openWindowWithPost('rushing')" style="margin-bottom: 15px; font-family: Helvetica Neue; font-weight: bold; color: #fff; background-color: #f7a51b;">
RUSHING
</button>
<button type="button" class="btn btn-lg btn-block" onclick="openWindowWithPost('striding')" style="margin-bottom: 15px; font-family: Helvetica Neue; font-weight: bold; color: #fff; background-color: #bccb42;">
STRIDING
</button>
<button type="button" class="btn btn-lg btn-block" onclick="openWindowWithPost('walking')" style="margin-bottom: 15px; font-family: Helvetica Neue; font-weight: bold; color: #fff; background-color:#5fb25f;">
WALKING
</button>
<button type="button" class="btn btn-lg btn-block" onclick="openWindowWithPost('strolling')" style="margin-bottom: 15px; font-family: Helvetica Neue; font-weight: bold; color: #fff; background-color:#4cb6a8">
STROLLING
</button>
<button type="button" class="btn btn-lg btn-block" onclick="openWindowWithPost('lounging')" style="margin-bottom: 15px; font-family: Helvetica Neue; font-weight: bold; color: #fff; background-color:#0098a8">
LOUNGING
</button>
</div>
<div class="section">
<div id="todo-stats"></div>
</div>
</script>
<script type="text/template" id="get-songtype-template">
<div id="user-info">
Signed in as <%= Parse.User.current().escape("username") %> (<a href="#" class="log-out">Log out</a>)
</div>
<img src="images/image03.png" height="630" width="357" boarder="0">
<div class="section">
<header id="header">
<input id="new-todo" placeholder="What needs to be done?" type="text" />
</header>
<div id="main">
<input id="toggle-all" type="checkbox">
<label for="toggle-all">Mark all as complete</label>
<ul id="todo-list">
<img src='images/spinner.gif' class='spinner' />
</ul>
</div>
<div id="todo-stats"></div>
</div>
</script>
<script type="text/template" id="manage-todos-template">
<div id="user-info">
Signed in as <%= Parse.User.current().escape("username") %> (<a href="#" class="log-out">Log out</a>)
</div>
<div class="starter-template" style="background-image: url(images/background.jpg);">
<img src="images/avatar.png"></img>
<p class="rock"> Welcome back </p>
<p class="rock"> "What's your speed? "</p>
<button type="button" class="btn btn-lg btn-block" onclick="openWindowWithPost('rushing')" style="margin-bottom: 15px; font-family: Helvetica Neue; font-weight: bold; color: #fff; background-color: #f7a51b;">
RUSHING
</button>
<button type="button" class="btn btn-lg btn-block" onclick="openWindowWithPost('striding')" style="margin-bottom: 15px; font-family: Helvetica Neue; font-weight: bold; color: #fff; background-color: #bccb42;">
STRIDING
</button>
<button type="button" class="btn btn-lg btn-block" onclick="openWindowWithPost('walking')" style="margin-bottom: 15px; font-family: Helvetica Neue; font-weight: bold; color: #fff; background-color:#5fb25f;">
WALKING
</button>
<button type="button" class="btn btn-lg btn-block" onclick="openWindowWithPost('strolling')" style="margin-bottom: 15px; font-family: Helvetica Neue; font-weight: bold; color: #fff; background-color:#4cb6a8">
STROLLING
</button>
<button type="button" class="btn btn-lg btn-block" onclick="openWindowWithPost('lounging')" style="margin-bottom: 15px; font-family: Helvetica Neue; font-weight: bold; color: #fff; background-color:#0098a8">
LOUNGING
</button>
</div>
// <div class="section">
// <header id="header">
// <input id="new-todo" placeholder="What needs to be done?" type="text" />
// </header>
// <div id="main">
// <input id="toggle-all" type="checkbox">
// <label for="toggle-all">Mark all as complete</label>
//
// <ul id="todo-list">
// <img src='images/spinner.gif' class='spinner' />
// </ul>
// </div>
<div id="todo-stats"></div>
</div>
</script>
<script type="text/template" id="item-template">
<li class="<%= done ? 'completed' : '' %>">
<div class="view">
<input class="toggle" type="checkbox" <%= done ? 'checked="checked"' : '' %>>
<label class="todo-content"><%= _.escape(content) %></label>
<button class="todo-destroy"></button>
</div>
<input class="edit" value="<%= _.escape(content) %>">
</li>
</script>
<script type="text/template" id="stats-template">
<footer id="footer">
<span id="todo-count"><strong><%= remaining %></strong> <%= remaining == 1 ? 'item' : 'items' %> left</span>
<ul id="filters">
<li>
<a href="javascript:void(0)" id="all" class="selected">All</a>
</li>
<li>
<a href="javascript:void(0)" id="active">Active</a>
</li>
<li>
<a href="javascript:void(0)" id="completed">Completed</a>
</li>
</ul>
<button id="clear-completed">Clear completed (<%= done %>)</button>
</footer>
</script>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
</body>
</html>