-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadd-service.html
46 lines (28 loc) · 871 Bytes
/
add-service.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
<!--
Add Service
-->
<!DOCTYPE html>
<html>
<head>
<title>Add Service</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>Add Service</h1>
<a href="index.html" data-icon="home" data-direction="reverse">Home</a>
</div><!-- /header -->
<div data-role="content">
<ul data-role="listview" data-inset="true">
<li>Weight tracking</li>
<li>Fitness tracking</li>
<li>Sleep tracking</li>
</ul>
</div><!-- /content -->
</div><!-- /page -->
</body>
</html>