-
Notifications
You must be signed in to change notification settings - Fork 0
/
food-order-confirmation.html
55 lines (50 loc) · 1.92 KB
/
food-order-confirmation.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Food Order Confirmation</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<link href="foodstyles.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
<script src="script.js"></script>
<script src="food-order-confirmation.js"></script>
</head>
<body>
<!--Main menu navbar-->
<script src="nav-bar.js"></script>
<div id="nav-bar"></div>
<br>
<div class="container main-menu">
<h1 style="text-align:center">Food Order Confirmation <hr></h1>
<div class="row">
<div class="col-sm-6">
<p id="foodOrderInfo" style="font-size: 1em; padding-left:1em;"></p>
</div>
<div class="col-sm-6">
<a href="credit-card-payment.html">
<button id="Credit_Card" onclick="putFoodOrder('Credit Card')">
Pay with a Credit Card <br>
<img src="https://iili.io/j7hD6G.md.png" alt="credit card image" width="125" height="100">
</button> </a>
<br>
<br>
<a href="loyalty-points-payment.html">
<button id="Loyalty_Points" onclick="putFoodOrder('Loyalty Points')">
Pay with Loyalty Points <br>
<img src="https://iili.io/j7hy8l.md.png" alt="smiley image" width="125" height="100">
</button> </a>
<br>
<br>
<button onclick="history.back();">
Return to Modify Order <br>
<img src="https://iili.io/j7jNS4.md.png" alt="return image" width="125" height="100">
</button>
</div>
</div>
</div>
</body>
</html>