-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathacs-user.html
276 lines (258 loc) · 11.3 KB
/
acs-user.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
<!DOCTYPE html>
<html>
<head>
<title>Accra Cab Services</title>
<!-- <meta name="viewport" content="width=device-width, initial-scale=1"> -->
<link rel="stylesheet" href="css/jquery.mobile-1.3.1.min.css">
<link rel="stylesheet" href="css/jqm-datebox-1.1.0.css">
<script src="js/jquery-1.9.1.min.js"></script>
<script src="js/jquery.mobile-1.3.1.min.js"></script>
<script src="js/jqm-datebox-1.1.0.core.js"></script>
<script src="js/jqm-datebox.mode.datebox.min.js"></script>
<link rel="stylesheet" href="css/style.css">
<script>
$(document).bind("mobileinit", function(evt) {
alert("Mobile initialization event fired");
$.mobile.defaultPageTransition = "none";
});
</script>
</head>
<body>
<!-- Welcome -->
<section data-role="page" id="welcome">
<header data-role="header">
<h1>ACS Mobile App</h1>
</header>
<img src="img/ACS%20LOGO.png" style="height:50%; width:100%;">
<div data-role="content" >
<ul data-role="listview" style="margin-top: 10px">
<li data-icon="false"><a href="" style="text-align:center; font-size: 25px">Unique and Reliable!</a></li>
</ul>
<fieldset class="ui-grid-a" data-role="fieldcontain" style="margin-top: 30px">
<div class="ui-block-a"><a href="#signup" data-role="button" data-theme="b">signup</a></div>
<div class="ui-block-b"><a href="#login" data-role="button" data-theme="a">login</a></div>
</fieldset>
</div>
<div data-role="footer" data-postion="fixed">
<h1>© 2013 Accra Cab Services</h1>
</div>
</section>
<!-- signup -->
<div data-role="page" id="signup">
<div data-role="header" data-theme="b">
<h1>Sign Up</h1>
</div>
<div data-role="content">
<form method="post" name="signup" data-role="fieldcontain">
<input lable for="username" type="text" placeholder="user name">
<input lable for="phoneNumber" type="text" placeholder="phone number">
<input lable for="password" type="password" placeholder="password">
<input lable for="verifyPassword" type="password" placeholder="verify password">
<a href="#user-details" data-role="button" data-theme="b">Sign Up</a>
</form>
<div>
<p style="text-align: center; font-size: 20px ">Do you have an account already?<br>Please log in</p>
<a href="#login" data-role="button" data-theme="a">Log In</a>
</div>
</div>
<div data-role="footer">
<h3>© 2013 Accra Cab Services</h3>
</div>
</div>
<!-- user details -->
<div data-role="page" id="user-details">
<header data-role="header">
<h1>User Details</h1>
</header>
<div data-role="content">
<form method="GET" name="user-details">
<input lable for="username" type="text" placeholder="user name">
<input name="firstname" type="text" placeholder="first name">
<input name="lastname" type="text" placeholder="last name">
<input name="phoneNumber" type="text" placeholder="phone number">
<input name="password" type="password" placeholder="password">
<a href="#start-page" data-role="button" data-theme="b">Sign Up</a>
</form>
</div>
<footer data-role="footer">
<h3>© 2013 Accra Cab Services</h3>
</footer>
</div>
</div>
<!--log in-->
<div data-role="page" id="login">
<header data-role="header" data-theme="b"><h1>Login</h1></header>
<div data-role="content">
<form method="post" name="signup" style="margin:25% 0 10%">
<input lable for="userphonenumber" type="text" placeholder="phone number">
<input lable for="password" type="password" placeholder="password">
<a href="#start-page" data-role="button" data-theme="b">Log In</a>
</form>
<div>
<p style="text-align: center; font-size: 20px; height: 50px">Don't have an account? <br> Signup now</p>
<a href="#signup" data-role="button" data-theme="a">Sign up</a>
</div>
</div>
<footer data-role="footer">
<h3>© 2013 Accra Cab Services</h3>
</footer>
</div>
<!-- User Start Page -->
<div data-role="page" id="start-page">
<header data-role="header" data-theme="b">
<a href="" data-icon="home" data-theme="c" data-mini="true">Home</a>
<h1>Home</h1>
<a href="#welcome" data-icon="delete" data-theme="a">Logout</a>
</header>
<div data-role="content">
<p style="text-align:center"><h2>How may we serve you today?</h2></p>
<div>
<ul data-role="listview" data-inset="true">
<li ><a href="#request-cab"><img src="img/requestcab.png" class="ui-li-thumbnail"> Request a Cab</a></li>
<li><a href="#reserve-cab"><img src="img/bookcab.png" class="ui-li-thumbnail">Reserve a Cab</a></li>
<li><a href="#check-history"><img src="img/history.png" class="ui-li-thumbnail">Check History</a></li>
<li><a href="#feedback"><img src="img/feedback.png" class="ui-li-thumbnial">Feedback</a></li>
</ul>
</div>
</div>
<footer data-role="footer">
<h3>© 2013 Accra Cab Services</h3>
</footer>
</div>
<!--Request Cab-->
<div data-role="page" id="request-cab">
<header data-role="header" data-theme="b">
<a href="#start-page" data-icon="arrow-l" data-theme="c" data-mini="true">Back</a>
<h1>Request a Cab</h1>
<a href="#welcome" data-icon="delete" data-theme="a">Logout</a>
</header>
<div data-role="content">
<form method="post">
<input type="text" name="location" placeholder="location">
<input type="text" name="destination" placeholder="destination">
<!--<input type="date" data-role="datebox" name="somedate"-->
<!--data-options='{"mode": "datebox", "overrideDateFormat": "mm/dd/YYYY"}' />-->
<input type="date" name="date" placeholder="date">
<input type="time" name="time" placeholder="time" autocomplete="on">
<fieldset class="ui-grid-a">
<div class="ui-block-a"><a href="#request-confirmation" data-role="button" data-theme="b">Send Request</a></div>
<div class="ui-block-b"><a href="#start-page" data-role="button" data-theme="a">Cancel</a></div>
</fieldset>
</form>
</div>
<footer data-role="footer">
<h3>© 2013 Accra Cab Services</h3>
</footer>
</div>
<!--Reserve Cab-->
<div data-role="page" id="reserve-cab">
<header data-role="header" data-theme="b">
<a href="#start-page" data-icon="arrow-l" data-theme="c" data-mini="true">Back</a>
<h1>Reserve a Cab</h1>
<a href="#welcome" data-icon="delete" data-theme="a">Logout</a>
</header>
<div data-role="content">
<div data-role="content">
<form method="post">
<input type="text" name="location" placeholder="location">
<input type="text" name="destination" placeholder="destination">
<input type="date" name="date-from" placeholder="beginning from">
<input type="date" name="date-to" placeholder="ending on">
<input type="time" name="time-from" placeholder="at what time?">
<input type="time" name="time-to" placeholder="till what time?">
<fieldset class="ui-grid-a">
<div class="ui-block-a"><a href="#request-confirmation" data-role="button" data-theme="b">Send Request</a></div>
<div class="ui-block-b"><a href="#start-page" data-role="button" data-theme="a">Cancel</a></div>
</fieldset>
</form>
</div>
<footer data-role="footer">
<h3>© 2013 Accra Cab Services</h3></footer>
</div>
</div>
<!--Check History-->
<div data-role="page" id="check-history">
<header data-role="header" data-theme="b">
<a href="#start-page" data-icon="arrow-l" data-theme="c" data-mini="true">Back</a>
<h1>Check History</h1>
<a href="#welcome" data-icon="delete" data-theme="a">Logout</a>
</header>
<div data-role="content">
<ul date="lisview" data-inset="true" data-role="list-divider">
<li>
you have been here
</li>
</ul>
</div>
<footer data-role="footer">
<h3>© 2013 Accra Cab Services</h3>
</footer>
</div>
<!--Feedback-->
<div data-role="page" id="feedback">
<header data-role="header" data-theme="b">
<a href="#start-page" data-icon="arrow-l" data-theme="c" data-mini="true">Back</a>
<h1>Feedback</h1>
<a href="#welcome" data-icon="delete" data-theme="a">Logout</a>
</header>
<div data-role="content">
<h1 style="line-height: 50px">Rate our service</h1>
<form>
<fieldset data-role="controlgroup" style="margin-bottom: 30px">
<input type="radio" name="radio-mini" id="radio-mini-1" value="choice-1" checked="checked"/>
<label for="radio-mini-1">Price</label>
<input type="radio" name="radio-mini" id="radio-mini-2" value="choice-2"/>
<label for="radio-mini-2">Customer Care</label>
<input type="radio" name="radio-mini" id="radio-mini-3" value="choice-3"/> <label for="radio-mini-3">Security</label>
</fieldset>
<textarea placeholder="Tell us how you feel about our service" style="min-height: 100px; margin-bottom: 30px"></textarea>
<fieldset class="ui-grid-a">
<div class="ui-block-a"><a href="#request-confirmation" data-role="button" data-theme="b">Send Feedback</a></div>
<div class="ui-block-b"><a href="#start-page" data-role="button" data-theme="a">Cancel</a></div>
</fieldset>
</form>
</div>
<footer data-role="footer">
<h3>© 2013 Accra Cab Services</h3>
</footer>
</div>
<!--Feedback-Thanks-->
<div id="feedback-thanks" data-role="dialog">
<div data-role="header" data-dismissible="false" data-potision-to-window><h1>Thank You</h1></div>
<div data-role="content">
<div>
<p style="text-align:center">We deeply appreciate your feedback.<br>Thank you.</p>
</div>
</div>
<footer data-role="footer">
<h3>© 2013 Accra Cab Services</h3>
</footer>
</div>
<!--request-confirmation-->
<div id="request-confirmation" data-role="dialog">
<div data-role="header" data-dismissible="false" data-potision-to-window><h1>Request Received</h1></div>
<div data-role="content">
<div>
<p style="text-align:center">Your Request has been received. It is receiving immediate attention. We will get back to you in a minute.<br>Thank you.</p>
</div>
</div>
<footer data-role="footer">
<h3>© 2013 Accra Cab Services</h3>
</footer>
</div>
<!--next page here-->
<div data-role="page" id="????">
<header data-role="header">
<nav data-role="navbar" >
<ul>
<!-- <li><a href="#start-page" class="ui-btn-active ui-state-persist" data-icon="start-page"></a></li> -->
</ul>
</nav>
</header>
<div data-role="content"></div>
<footer data-role="footer">
<h3>© 2013 Accra Cab Services</h3>
</footer>
</div>
</body>
</html>