15 lines
538 B
PHP
15 lines
538 B
PHP
<?= $this->extend('layout/careers_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() ?>
|