-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcheckout_thankyou.php
108 lines (100 loc) · 2.61 KB
/
checkout_thankyou.php
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="favicon.png" />
<title>RTECH For Tech Materials</title>
<link rel="stylesheet" href="css/general.css" />
<link rel="stylesheet" href="css/aside.css">
<link rel="stylesheet" href="css/article.css">
<link rel="stylesheet" href="css/index.css">
<link rel="stylesheet" href="css/footer.css">
<style>
.thankyou-container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 80vh;
width: 100%;
background-color: var(--color-1);
}
.thankyou-container h1 {
font-size: 3rem;
font-weight: 300;
margin-bottom: 100px;
text-align: center;
}
.thankyou-container a {
width: 50%;
}
</style>
</head>
<body>
<!-- Header -->
<?php include('common/header.php') ?>
<main>
<div id="main-container">
<aside>
<?php include 'common/aside.php' ?>
</aside>
<div>
<section class="thankyou-container">
<?php if ($_GET['result']) : ?>
<h1>Thank you for your Purchase</h1>
<h2>You can go to your orders page to track your purchase delivery</h2>
<a href="orders" class="styled-btn">
Go To Orders Page
</a>
<a href="./" class="styled-btn">
Return To Store
</a>
<?php else : ?>
<h1>
Your purchase did not get submitted for unexpected reasons 😞
<br>
Try again later
</h1>
<a href="./" class="styled-btn">
Return To Store
</a>
<?php endif ?>
</section>
<!-- airpods special offer -->
<section id="airpods-special-offer" class="special-offer">
<div class="special-offer-text">
<h2>AirPods Pro</h2>
<p>
AirPods deliver effortless, all-day audio on the go.
</p>
<a href="article?article_id=1" class="styled-btn">
ORDER NOW
</a>
</div>
<div class="special-offer-img">
<img src="img/special_offers/airpods_special_offer.png" alt="">
</div>
</section>
<!-- galaxy s9 special offer -->
<section id="s9-special-offer" class="special-offer">
<div class="special-offer-img">
<img src="img/special_offers/s9_special_offer.png" alt="">
</div>
<div class="special-offer-text">
<h2>Galaxy S9</h2>
<p>
With a camera that works like your eye.
</p>
<a href="article?article_id=51" class="styled-btn">
ORDER NOW
</a>
</div>
</section>
</div>
</div>
</main>
<!-- Footer -->
<?php include('common/footer.php') ?>
</body>
</html>