19 lines
623 B
PHP
19 lines
623 B
PHP
<?php
|
|
session_start();
|
|
include 'templates/header.php';
|
|
?>
|
|
|
|
<div class="container py-5">
|
|
<div class="row justify-content-center">
|
|
<div class="col-md-8 text-center">
|
|
<div class="auth-container">
|
|
<h2 class="text-warning">Checkout Canceled</h2>
|
|
<p class="lead">Your subscription process has been canceled.</p>
|
|
<p>You have not been charged. You can always choose a plan later.</p>
|
|
<a href="pricing.php" class="btn btn-primary mt-3">View Plans</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<?php include 'templates/footer.php'; ?>
|