-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheckout-success.html
45 lines (45 loc) · 1.2 KB
/
checkout-success.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Checkout Success</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
margin-top: 50px;
}
.container {
max-width: 600px;
margin: auto;
padding: 20px;
border: 1px solid #ddd;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
h1 {
color: green;
}
p {
font-size: 18px;
color: #555;
}
</style>
<script>
// Redirect to the homepage after 5 seconds
setTimeout(() => {
window.location.href = "/index.html";
}, 5000);
</script>
</head>
<body>
<div class="container">
<h1>Order Successful!</h1>
<p>Your order has been placed successfully.</p>
<p>Thank you for shopping with us!</p>
<p>You will be redirected to the homepage in 5 seconds...</p>
<p>If you are not redirected, <a href="/index.html">click here</a>.</p>
</div>
</body>
</html>