File size: 1,268 Bytes
ec260dd bddcee1 ec260dd bddcee1 ec260dd bddcee1 ec260dd bddcee1 ec260dd bddcee1 ec260dd bddcee1 ec260dd bddcee1 ec260dd |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Final Order</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
}
.order-summary {
padding: 15px;
border: 1px solid #ddd;
border-radius: 8px;
background-color: #f9f9f9;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}
</style>
</head>
<body>
<div class="order-summary">
<h2>Final Order Summary</h2>
<div id="order-details"></div>
<button onclick="goBack()">Go Back to Menu</button>
</div>
<script>
// Retrieve the final order summary from session storage
const summary = sessionStorage.getItem('finalOrderSummary');
if (summary) {
document.getElementById('order-details').innerHTML = summary;
} else {
document.getElementById('order-details').innerHTML = "<p>No order found.</p>";
}
// Go back to the menu page
function goBack() {
window.location.href = "/index.html"; // Ensure this is the menu page
}
</script>
</body>
</html>
|