31 lines
1.0 KiB
PHP
31 lines
1.0 KiB
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>Subscription Canceled - Veritune</title>
|
|
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&family=Inter:wght@400;700&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="assets/css/custom.css">
|
|
</head>
|
|
<body class="bg-light-gray">
|
|
<?php include 'includes/header.php'; ?>
|
|
|
|
<main class="container py-5">
|
|
<div class="card text-center">
|
|
<h1>Subscription Canceled</h1>
|
|
<p>Your subscription process has been canceled. You can subscribe anytime from our pricing page.</p>
|
|
<a href="index.php#pricing" class="btn btn-primary">Back to Pricing</a>
|
|
</div>
|
|
</main>
|
|
|
|
<footer class="footer bg-white">
|
|
<div class="container">
|
|
<p>© <?php echo date("Y"); ?> Veritune. All rights reserved.</p>
|
|
</div>
|
|
</footer>
|
|
</body>
|
|
</html>
|