-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththankyou.php
More file actions
34 lines (31 loc) · 1.11 KB
/
thankyou.php
File metadata and controls
34 lines (31 loc) · 1.11 KB
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
<?php
include "includes/header.php";
// session_start();
if(!isset($_SESSION['username'])){
echo '<script>window.open("login.php","_self");</script>';
}
if(isset($_GET['oid']) && $_GET['oid']>0 && isset($_SESSION['username']) ){
$oid=$_GET['oid'];
?>
<div class="container-fluid m-0 p-0" style="height:663px;">
<div class="h-25 bg-info text-center">
<a href="<?php echo WEBSITE_PATH; ?>" class="text-danger" style="font-size:80px;font-weight:500px;text-decoration:none;"><?php echo WEBSITE_NAME; ?></a>
</div>
<div class="h-50">
<div class="container">
<h1>Thank you,</h1><br>
<h2 class="pl-5">Your order has been placed successfully.</h2>
<h2 class="pl-5">Order id=<?php echo $oid ?></h2>
</div>
</div>
<div class="h-25 bg-info"></div>
</div>
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/custom.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/sweetalert.min.js"></script>
<script src="https://use.fontawesome.com/37bfff5a04.js"></script>
</body>
</html>
<?php } ?>