34 lines
997 B
PHP
34 lines
997 B
PHP
<?php
|
|
session_start();
|
|
if (!isset($_SESSION['user_id'])) {
|
|
header('Location: login.php');
|
|
exit();
|
|
}
|
|
|
|
$pageTitle = "Upgrade to PRO";
|
|
include 'includes/header.php';
|
|
?>
|
|
|
|
<div class="container">
|
|
<div class="auth-container">
|
|
<h2>Upgrade to PRO</h2>
|
|
<p>Unlock premium features and take your CV to the next level.</p>
|
|
|
|
<div class="pro-features">
|
|
<h3>PRO Plan Benefits:</h3>
|
|
<ul>
|
|
<li><i class="fas fa-check-circle"></i> Unlimited CVs</li>
|
|
<li><i class="fas fa-star"></i> Access to all premium templates</li>
|
|
<li><i class="fas fa-headset"></i> Priority Support</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<form action="payment_handler.php" method="POST">
|
|
<p>Click the button below to simulate the upgrade process.</p>
|
|
<button type="submit" class="button">Upgrade Now for $10 (Simulated)</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
<?php include 'includes/footer.php'; ?>
|