35866-vm/cancel.php
Flatlogic Bot 903cf599f0 rfresh1
2025-11-20 09:45:59 +00:00

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'; ?>