Spaces:
Sleeping
Sleeping
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Order Confirmation</title> | |
<style> | |
body { | |
font-family: Arial, sans-serif; | |
background-color: #f4f4f4; | |
margin: 0; | |
padding: 0; | |
} | |
.container { | |
width: 80%; | |
margin: 50px auto; | |
text-align: center; | |
} | |
h1 { | |
color: #333; | |
} | |
.confirmation-message { | |
background-color: #fff; | |
padding: 30px; | |
margin: 20px 0; | |
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); | |
border-radius: 8px; | |
} | |
.btn-home { | |
padding: 12px 20px; | |
background-color: #4CAF50; | |
color: white; | |
border: none; | |
border-radius: 4px; | |
cursor: pointer; | |
text-decoration: none; | |
} | |
.btn-home:hover { | |
background-color: #45a049; | |
} | |
</style> | |
</head> | |
<body> | |
<div class="container"> | |
<h1>Thank You for Your Order!</h1> | |
<div class="confirmation-message"> | |
<p>Your order has been successfully placed. We will notify you when it's ready for delivery or pickup.</p> | |
</div> | |
<a href="/" class="btn-home">Go to Home</a> | |
</div> | |
</body> | |
</html> | |