28 lines
1.0 KiB
PHP
28 lines
1.0 KiB
PHP
<?php
|
|
$pageTitle = "Thank You - Kotkakey";
|
|
$pageDescription = "Thank you for your interest in the Kotkakey pilot program.";
|
|
|
|
// Include header
|
|
include __DIR__ . '/index.php';
|
|
?>
|
|
|
|
<main class="container mt-5 pt-5">
|
|
<div class="row justify-content-center">
|
|
<div class="col-lg-8">
|
|
<div class="card shadow-sm text-center" style="border-radius: 0.5rem; border: 0;">
|
|
<div class="card-body p-5">
|
|
<h1 class="display-5">Thank You!</h1>
|
|
<p class="lead">Your application to join the pilot program has been received.</p>
|
|
<p>We appreciate your interest in helping us solve medicine shortages. Our team will review your information and contact you shortly with the next steps.</p>
|
|
<hr class="my-4">
|
|
<a href="/" class="btn btn-primary" style="background-color: #0057FF; border: none;">Return to Homepage</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
|
|
<?php
|
|
// Include footer (handled by including index.php)
|
|
?>
|