-
Notifications
You must be signed in to change notification settings - Fork 1
/
day26.html
57 lines (56 loc) · 2.52 KB
/
day26.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
<html>
<head>
<title></title>
<meta content="width=device-width, initial-scale=1" name="viewport">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.css" />
<script type="text/javascript" src="http://code.jquery.com/jquery-1.7.1.js"></script>
<script type="text/javascript" src="http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.js"></script>
<link rel="stylesheet" href="app.css" />
<script type="text/javascript" src="app.js"></script>
</head>
<body class="ui-mobile-viewport">
<div id="day" "ui-page ui-body-c" data-theme="c" data-role="page" data-url="day" tabindex="0" style="min-height: 373px;">
<div class="ui-header ui-bar-c" data-role="header" role="banner">
<a class="ui-btn-left jqm-home ui-btn ui-btn-icon-notext ui-btn-corner-all ui-shadow ui-btn-up-f" data-direction="reverse" data-iconpos="notext" data-icon="home" href="index.html" title="Home" data-theme="c"><span class="ui-btn-inner ui-btn-corner-all" aria-hidden="true"><span class="ui-btn-text">Home</span><span class="ui-icon ui-icon-home ui-icon-shadow"></span></span></a>
<h1 class="ui-title day-header" tabindex="0" role="heading" aria-level="1">Day 26</h1>
</div>
<div role="main" class="ui-content ui-body-c" data-role="content" data-theme="c">
<div class="street-display">
<h3>Street Running</h3>
<ol>
<li>Brisk 5 Minute Warm up Walk</li>
<li>Jog 30 Minutes</li>
<li>Cooldown Walk 5 Minutes</li>
</ol>
</div>
<div class="treadmill-display">
<h3>Treadmill Running</h3>
<table class="workout-table">
<tr>
<th>Time</th><th>Action</th>
</tr>
<tr>
<td>00:00-5:00</td><td>Warmup walk</td>
</tr>
<tr>
<td>5:00-35:00</td><td>Run</td>
</tr>
<tr>
<td>35:00-40:00</td><td>Walk</td>
</tr>
</table>
</div>
<div data-role="fieldcontain">
<fieldset data-role="controlgroup">
<input type="checkbox" name="completed" data-day="26" id="completed" class="custom" />
<label for="completed">Completed?</label>
</fieldset>
</div>
</div>
<div data-role="footer" class="ui-bar">
<a href="#" class="street" data-role="button">Street</a>
<a href="#" class="treadmill" data-role="button">Treadmill</a>
</div>
</div>
</body>
</html>