-
Notifications
You must be signed in to change notification settings - Fork 0
/
wellness-report.html
103 lines (62 loc) · 1.94 KB
/
wellness-report.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
<!--
For reporting wellness and other events
-->
<!DOCTYPE html>
<html>
<head>
<title>Fitness Report</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0-rc.2/jquery.mobile-1.2.0-rc.2.min.css" />
<script src="http://code.jquery.com/jquery-1.8.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.2.0-rc.2/jquery.mobile-1.2.0-rc.2.min.js"></script>
</head>
<body>
<div data-role="page">
<div data-role="header">
<h1>Fitness Report</h1>
<a href="index.html" data-icon="home" data-direction="reverse">Home</a>
</div><!-- /header -->
<div data-role="content">
<p>
Gain 10 points for adding an fitness report
</p>
<label for="select-choice-0" class="select">What did you do?</label>
<select name="select-choice-0" id="select-choice-0">
<option value="run">Run</option>
<option value="walk">Walk</option>
<option value="hike">Hike</option>
<option value="swim">Swim</option>
</select>
<div data-role="fieldcontain">
<label for="number">How long ?(minutes)</label>
<input type="number" name="number" id="number" value="" />
</div>
<div data-role="fieldcontain">
<label for="distance">How far ?(km)</label>
<input type="number" name="distance" id="distance" value="" />
</div>
<!-- <label for="slider-1">How Long?</label>
<input type="range" name="slider-1" id="slider-1" value="60" min="0" max="100" />
-->
<button type="submit" data-theme="a">Add</button>
<ul>
<li>
<a href="#">Past Entries</a>
</li>
<li>
<a href="settings.html">Sync with other services</a>
</li>
</ul>
<!--
<ul data-role="listview" data-inset="true">
<li><a href="#">Medical Data</a></li>
<li><a href="#">Settings</a></li>
</ul>
-->
<!--
recently added data
-->
</div><!-- /content -->
</div><!-- /page -->
</body>
</html>