forked from radhikazawar9/cloud-computing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu.html
72 lines (47 loc) · 2.51 KB
/
menu.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Set title -->
<title>Restaurant Ordering App</title>
<!-- Latest compiled and minified CSS Bootstrap-->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!-- Enable Google APIs-->
<meta name="google-signin-client_id" content="436284681417-gnns65dasicsl1719kbqacgnt1vd57da.apps.googleusercontent.com">
<!-- Enable AWS Cloud Services API -->
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.7.16.min.js"></script>
<!-- Enable JQuery -->
<script src="https://code.jquery.com/jquery-3.1.1.min.js" integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8=" crossorigin="anonymous"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<!-- Include the script for sign in/out, cart manipulation, and writing to db -->
<script src="/scripts/aws-config.js"></script>
<script src="/scripts/main.js"></script>
<script src="/scripts/menu.js"></script>
</head>
<body onload="fetchDishes()">
<div class="container">
<button onclick="signOut();" class="btn btn-light">Sign out</button>
<script src="https://apis.google.com/js/platform.js?onload=onLoad" async defer></script>
<div class="alert alert-success" role="alert">
<div id = "helloBanner"></div>
</div>
<h1>MELBOURNE DELIGHT FOOD SERVICES <small>Order anywhere, anytime</small></h1>
<p><br/></p>
<!-- List all food items -->
<div class="col-sm-7" id="dishesList"></div>
<!-- Two blank column in the middle for spacing -->
<div class="col-sm-2"> </div>
<!-- List all cart items -->
<div class="col-sm-3" id="cartList" style="background-color:azure;"></div>
<!-- Define components in the footer -->
<div class="col-lg-12">
<div class="footer">
<p>© <a href="http://google.com" target="_blank">Nhi Huynh and Radhika Zawar 2019</a></p>
</div>
</div>
</div>
</body>
</html>