24 lines
834 B
PHP
24 lines
834 B
PHP
<?php
|
|
session_start();
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Purchase Cancelled</title>
|
|
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
|
|
</head>
|
|
<body>
|
|
<div class="container mt-5">
|
|
<div class="alert alert-warning" role="alert">
|
|
<h4 class="alert-heading">Purchase Cancelled</h4>
|
|
<p>Your purchase process has been cancelled. You have not been charged.</p>
|
|
<hr>
|
|
<p class="mb-0">You can return to the <a href="coaches.php">coaches page</a> to browse other packages or try again.</p>
|
|
</div>
|
|
<a href="dashboard.php" class="btn btn-primary">Go to Dashboard</a>
|
|
</div>
|
|
</body>
|
|
</html>
|