-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpayment_successful.php
37 lines (31 loc) · 1.04 KB
/
payment_successful.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
<?php
session_start();
include "./redirect_to_login.php";
include "./layouts/header.php";
include "./database/queries/clear_cart.php";
?>
<!-- Page Header Start -->
<div class="container-fluid bg-secondary mb-5">
<div class="d-flex flex-column align-items-center justify-content-center" style="min-height: 300px">
<h1 class="font-weight-semi-bold text-uppercase mb-3">Payment Successful</h1>
<div class="d-inline-flex">
You have successfully paid $<?= $_SESSION['cart_total'] ?>. Happy Shopping!
</div>
</div><br><br><br><br>
</div>
<!-- Page Header End -->
<!-- Checkout Start -->
<!-- <div class="container-fluid bg-secondary pt-5"> -->
<!-- <div class="row px-xl-5">
<div class="col-lg-8">
<div class="mb-4">
<h4 class="font-weight-semi-bold mb-4">Billing Address</h4>
<div class="row">
</div>
</div>
</div>
</div> -->
<!-- Checkout End -->
<script>
</script>
<?php include "./layouts/footer.php" ?>