35675-vm/thank_you.php
2025-11-12 21:47:52 +00:00

43 lines
2.2 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>Thank You! - Create a survey management system</title>
<meta name="description" content="Thank you for your feedback. Built with Flatlogic Generator.">
<meta name="keywords" content="thank you, confirmation, survey complete, feedback received, survey management system, Built with Flatlogic Generator">
<meta property="og:title" content="Thank You! - Create a survey management system">
<meta property="og:description" content="Thank you for your feedback. Built with Flatlogic Generator.">
<meta property="og:image" content="">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:image" content="">
<meta name="robots" content="noindex, nofollow">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
</head>
<body>
<div class="container my-5">
<div class="card thank-you-container">
<div class="card-body">
<i class="bi bi-check-circle-fill thank-you-icon"></i>
<h1 class="card-title h2">Thank You!</h1>
<?php if (isset($_SESSION['success_message'])): ?>
<p class="lead"><?php echo htmlspecialchars($_SESSION['success_message']); unset($_SESSION['success_message']); ?></p>
<?php else: ?>
<p class="lead">Your submission has been received.</p>
<?php endif; ?>
<a href="index.php" class="btn btn-light mt-3">Back to Home</a>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>