28 lines
981 B
PHP
28 lines
981 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Thank You - FormFlex Pro</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<link rel="stylesheet" href="assets/css/custom.css">
|
|
</head>
|
|
<body>
|
|
|
|
<div class="survey-container text-center">
|
|
<div class="card p-4 p-md-5">
|
|
<h1 class="display-4">Thank You!</h1>
|
|
<p class="lead">Your survey has been submitted successfully.</p>
|
|
<hr class="my-4">
|
|
<p>We appreciate your feedback.</p>
|
|
<a class="btn btn-primary btn-lg" href="index.php" role="button">Return to Homepage</a>
|
|
</div>
|
|
<div class="powered-by mt-3">
|
|
Powered by <a href="index.php" target="_blank">FormFlex Pro</a>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
|
|
</body>
|
|
</html>
|