-
Notifications
You must be signed in to change notification settings - Fork 0
/
asc-drv.html
90 lines (83 loc) · 2.4 KB
/
asc-drv.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
<!DOCTYPE html>
<html>
<head>
<title>Accra Cab Services</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="jquery.mobile-1.3.1.min.css" />
<script src="jquery-1.9.1.min.js"></script>
<script src="jquery.mobile-1.3.1.min.js"></script>
</head>
<body>
<!-- Welcome -->
<section data-role="page" id="welcome">
<header data-role="header">
<h1>ACS Mobile App</h1>
</header>
<div><img src="./img/ACS%20LOGO.png" style="height:100%; width:100%;"></div>
<div data-role="content">
<ul data-role="listveiw" data-inset="true">
<h1 >
<ul data-role="listview">
<li data-icon="false"><a href="" >Unique and Reliable!</a></li>
</ul>
</h1>
<form method="post" name="signup">
<input lable for="userphonenumber" type="text" placeholder="phone number"></input>
<input lable for="password" type="password" placeholder="password"></input>
<a href="#start-page" data-role="button" data-transition="slide" data-theme="b">Log In</a>
</form>
</ul>
</div>
</div>
</div>
<div data-role="footer">
<h3>© 2013 Accra Cab Services</h3>
</div>
</section>
<!-- User Start Page -->
<div data-role="page" id="start-page">
<header data-role="header">
<nav data-role="navbar" >
<ul>
<li><a href="#start-page" class="ui-btn-active ui-state-persist" data-icon="home"></a></li>
</ul>
</nav>
</header>
<div data-role="content">
<div data-role="collapsible-set">
<div data-role="collapsible" data-collapsible="false">
<h1>Incoming Request</h1>
<p>There are no pending requests</p>
</div>
<div data-role="collapsible">
<h1>Active Request</h1>
<p>There are no active requests</p>
</div>
<div data-role="collapsible">
<h1>Scheduled Requests</h1>
<p>There are no scheduled requestss</p>
</div>
<div data-role="collapsible">
<h1>Completed Request</h1>
<p>There are no completed requests</p>
</div>
</div>
<footer data-role="footer">
<h3>© 2013 Accra Cab Services</h3>
</footer>
</div>
<!-- page 2-->
<div data-role="page" id="page2">
<header data-role="header">
<h1>This is page 2</h1>
</header>
<div data-role="content">
<h2>This is page 2 Content</h2>
<a href="#page1">Go to page 1</a>
</div>
<footer data-role="footer">
<h2>This is page 2 footer</h2>
</footer>
</div>
</body>
</html>