Files
alrahma_sunday_school/app/Views/jobs/received.php
T
root dbfd72c2f9
Deploy to Shared Hosting / Shared hosting deploy (push) Failing after 48s
Tests / PHPUnit (push) Successful in 1m29s
add open position system
2026-09-02 00:53:55 -04:00

15 lines
535 B
PHP

<?= $this->extend('layout/main_layout') ?>
<?= $this->section('content') ?>
<div class="container py-5">
<div class="row justify-content-center">
<div class="col-lg-7">
<div class="alert alert-success">Thank you. Your application has been received.</div>
<p>We will review your submission and follow up if there is a match for the role.</p>
<a href="<?= site_url('careers') ?>" class="btn btn-primary">Return to Openings</a>
</div>
</div>
</div>
<?= $this->endSection() ?>