22 lines
683 B
PHP
22 lines
683 B
PHP
<?php
|
|
require_once 'header.php';
|
|
?>
|
|
|
|
<div class="container mt-5">
|
|
<div class="row">
|
|
<div class="col-md-8 offset-md-2 text-center">
|
|
<div class="alert alert-warning" role="alert">
|
|
<h4 class="alert-heading">Payment Canceled</h4>
|
|
<p>Your payment was canceled. You have not been charged.</p>
|
|
<hr>
|
|
<p class="mb-0">You can continue shopping or go back to your cart.</p>
|
|
</div>
|
|
<a href="index.php" class="btn btn-primary">Back to Home</a>
|
|
<a href="cart.php" class="btn btn-secondary">View Cart</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<?php
|
|
require_once 'footer.php';
|
|
?>
|