-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfirmationpage.html
More file actions
29 lines (26 loc) · 1.32 KB
/
confirmationpage.html
File metadata and controls
29 lines (26 loc) · 1.32 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
<!DOCTYPE html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Archivo+Black&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Oswald&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Nanum+Gothic&display=swap" rel="stylesheet">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<Title>Order Confirmation</Title>
</head>
<body onload="displayProducts()">
<div class="jumbotron text-center">
<h1 class="display-3">Thank You!</h1>
<p class="lead">Here is a summary of your order:</p>
<p id="orderSummary">[Order Summary will go here]</p>
<p class="lead">
<a class="btn btn-warning btn-sm" href="UserInfo.html" role="button">Back to Homepage</a>
</p>
</div>
<footer class="my-5 text-muted text-center text-smaller">
<p class="mb-1">© 2019 Nididas</p>
</footer>
<script type="text/javascript" src="ourJS.js"></script>
</body>
</html>