-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsleep-report.html
81 lines (48 loc) · 1.35 KB
/
sleep-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
<!--
For reporting sleep time
-->
<!DOCTYPE html>
<html>
<head>
<title>Sleep 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>Sleep 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 a sleep report
</p>
<div data-role="fieldcontain">
<label for="number">How many hours did you sleep last night?</label>
<input type="number" name="number" id="number" value="" />
</div>
<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>