17 lines
544 B
PHP
17 lines
544 B
PHP
<?php
|
|
include 'header.php';
|
|
?>
|
|
|
|
<div class="container mt-5">
|
|
<div class="alert alert-warning" role="alert">
|
|
<h4 class="alert-heading">Payment Canceled</h4>
|
|
<p>Your payment process was canceled. You have not been charged.</p>
|
|
<hr>
|
|
<p class="mb-0">You can return to your cart to review your items or go back to the homepage.</p>
|
|
</div>
|
|
<a href="cart.php" class="btn btn-secondary">Back to Cart</a>
|
|
<a href="index.php" class="btn btn-primary">Back to Home</a>
|
|
</div>
|
|
|
|
<?php include 'footer.php'; ?>
|