-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVirtualOrdering.html
More file actions
102 lines (101 loc) · 3.94 KB
/
VirtualOrdering.html
File metadata and controls
102 lines (101 loc) · 3.94 KB
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>OrderDude</title>
<script src="scripts/jquery-1.8.0.min.js"></script>
<link rel="stylesheet" href="https://ajax.aspnetcdn.com/ajax/jquery.mobile/1.1.1/jquery.mobile-1.1.1.min.css" />
<link rel="stylesheet" href="css/VirtualOrdering.css" />
<script src="https://ajax.aspnetcdn.com/ajax/jquery.mobile/1.1.1/jquery.mobile-1.1.1.min.js"></script>
<script src="scripts/VirtualOrdering.js"></script>
<!-- Version : 7.0 , Capability : ['Personalization'] -->
</head>
<body>
<div id="home" data-role="page" data-add-back-btn="true">
<div data-role="header">
<h1>OrderDude</h1>
<a data-role="button" data-transition="fade" href="#cart" class="cart_button ui-btn-right">Cart </a>
</div>
<div data-role="content">
<div data-role="navbar" id = "home_navbar"></div>
</div>
<div data-role="footer" data-position="fixed">
<a data-role="button" href="http://www.OrderDude.com" class="ui-btn-left">OrderDude.com</a><h4></h4>
</div>
</div>
<div id="restaurant" data-role="page" data-add-back-btn="true">
<div data-role="header">
<h1>Virtual Ordering</h1>
<a data-role="button" data-transition="fade" href="#cart" class="cart_button ui-btn-right">Cart</a>
</div>
<div data-role="content">
</div>
<div data-role="footer" data-position="fixed">
<a data-role="button" href="#cart" class="ui-btn-left">Order</a><h4></h4>
</div>
</div>
<div id="menuitems" data-role="page">
<div data-role="header">
<a data-role="button" href="#restaurant" class="ui-btn-left">Back</a>
<h1>Menu Items</h1>
<a data-role="button" data-transition="fade" href="#cart" class="cart_button ui-btn-right">Cart</a>
</div>
<div data-role="content"></div>
<div data-role="footer" data-position="fixed">
<a data-role="button" href="#cart" class="ui-btn-left">Order</a><h4></h4>
</div>
</div>
<div id="cart" data-role="page" data-add-back-btn="true">
<div data-role="header">
<h1></h1>
<a data-role="button" data-transition="fade" href="#clearcart" class="ui-btn-right">Clear</a>
</div>
<div data-role="content"></div>
<div id="div-slider-tip">Tips (in %) : <input type="range" id="slider-tip" min="0" max="30" data-highlight="true" data-theme="c" data-track-theme="c"/></div><br />
<div data-role="footer" data-position="fixed">
<h4></h4>
</div>
</div>
<div id="personalize" data-role="page">
<div data-role="header">
<h1></h1>
<a data-role="button" data-transition="fade" href="#cart" class="cart_button ui-btn-right">Cart</a>
</div>
<div data-role="content"></div>
<div data-role="footer" data-position="fixed">
<h4></h4>
</div>
</div>
<div id="collectinfo" data-role="page" data-add-back-btn="true">
<div data-role="header">
<h1></h1>
<a data-role="button" data-transition="fade" href="#cart" class="cart_button ui-btn-right">Cart</a>
</div>
<div data-role="content"></div>
<div data-role="footer" data-position="fixed">
<h4></h4>
</div>
</div>
<div id="payment" data-role="page" data-add-back-btn="false">
<div data-role="header">
<h1></h1>
<a data-role="button" data-transition="fade" href="#home" class="home_button ui-btn-left">Home</a>
</div>
<div data-role="content"></div>
<div data-role="footer" data-position="fixed">
<a data-role="button" href="http://www.OrderDude.com" class="ui-btn-left">OrderDude.com</a><h4></h4>
</div>
</div>
<div id="order" data-role="page" data-add-back-btn="false">
<div data-role="header">
<h1></h1>
<a data-role="button" data-transition="fade" href="#home" class="home_button ui-btn-left">Home</a>
</div>
<div data-role="content"></div>
<div data-role="footer" data-position="fixed">
<a data-role="button" href="http://www.OrderDude.com" class="ui-btn-left">OrderDude.com</a><h4></h4>
</div>
</div>
</body>
</html>