-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVirtualOrdering_0.html
More file actions
70 lines (70 loc) · 2.68 KB
/
Copy pathVirtualOrdering_0.html
File metadata and controls
70 lines (70 loc) · 2.68 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
<!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" />
<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>
</head>
<body>
<div id="home" data-role="page">
<div data-role="header">
<h1>Virtual Ordering</h1>
<a data-role="button" data-transition="fade" href="#cart" class="ui-btn-right">Cart</a>
</div>
<div data-role="content">
</div>
<div id="footer" data-role="footer" data-position="fixed">
<h4></h4>
<a href="http://www.OrderDude.com">Powered by OrderDude.com</a>
</div>
</div>
<div id="menuitems" data-role="page" data-add-back-btn="true">
<div data-role="header" data-position="fixed">
<a data-role="button" data-transition="fade" href="#cart" class="ui-btn-right">Cart</a>
</div>
<div data-role="header"><h1></h1></div>
<div data-role="content"></div>
<div id="footer" data-role="footer" data-position="fixed">
<h4></h4>
<a href="http://www.OrderDude.com">Powered by OrderDude.com</a>
</div>
</div>
<div id="cart" data-role="page" data-add-back-btn="true">
<div data-role="header" data-position="fixed">
<a data-role="button" data-transition="fade" href="#cart" class="ui-btn-right">Cart</a>
</div>
<div data-role="header"><h1></h1></div>
<div data-role="content"></div>
<div id="footer" data-role="footer" data-position="fixed">
<h4></h4>
<a href="http://www.OrderDude.com">Powered by OrderDude.com</a>
</div>
</div>
<div id="collectinfo" data-role="page" data-add-back-btn="true">
<div data-role="header" data-position="fixed">
<a data-role="button" data-transition="fade" href="#cart" class="ui-btn-right">Cart</a>
</div>
<div data-role="header"><h1></h1></div>
<div data-role="content"></div>
<div id="footer" data-role="footer" data-position="fixed">
<a href="http://www.OrderDude.com">Powered by OrderDude.com</a>
<h4></h4>
</div>
</div>
<div id="order" data-role="page" data-add-back-btn="true">
<div data-role="header" data-position="fixed">
<a data-role="button" data-transition="fade" href="#cart" class="ui-btn-right">Cart</a>
</div>
<div data-role="header"><h1></h1></div>
<div data-role="content"></div>
<div id="footer" data-role="footer" data-position="fixed">
<a href="http://www.OrderDude.com">Powered by OrderDude.com</a>
<h4></h4>
</div>
</div>
</body>
</html>