-
Notifications
You must be signed in to change notification settings - Fork 0
/
order.html
62 lines (61 loc) · 2.11 KB
/
order.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
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Buy Online - Official</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
<link rel="shortcut icon" href="/assets/logo.svg" type="image/x-icon">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200" />
<link rel="stylesheet" href="/css/style.css">
<link rel="stylesheet" href="/css/responsive.css">
<style>
.container{
flex-direction: column;
}
img{
width: 30%;
max-width: 200px;
}
button{
height: 40px;
background-color: #0076be;
border: none;
outline: none;
border-radius: 5px;
color: white;
font-size: 16px;
padding: 0 30px;
cursor: pointer;
box-shadow: 1px 4px 12px 0px #00000052;
}
button:hover{
background-color: #005e99;
}
p{
text-align: center;
font-size: 18px;
margin-top: 0;
}
</style>
</head>
<body>
<div class="container" center>
<img src="https://uxwing.com/wp-content/themes/uxwing/download/e-commerce-currency-shopping/order-placed-purchased-icon.png" alt="">
<h1>Order Placed Successfully</h1>
<p>
Thank you, Your order has been received. <br>
Please check and download order invoice for future queries.
</p>
<br>
<button onclick="location='receipt.html'+location.search">Check order Details</button>
</div>
</body>
<script>
let query = new URLSearchParams(location.search)
if(query.has("order_id") == false) location = "/NotFound.html"
</script>
</html>