21 lines
784 B
PHP
21 lines
784 B
PHP
<?= $this->extend('layout/main_layout') ?>
|
|
<?= $this->section('content') ?>
|
|
<?php $successMessage = session()->getFlashdata('success'); ?>
|
|
<div class="container my-4">
|
|
<div class="alert alert-success">
|
|
<h4 class="alert-heading">Success!</h4>
|
|
<p><?= esc($successMessage ?: 'The student(s) has/have been successfully enrolled.') ?></p>
|
|
<p class="mb-0">You will be redirected to the enroll page shortly...</p>
|
|
</div>
|
|
<a href="<?= base_url('/parent/enroll_classes') ?>" class="btn btn-success">Return to Enrollment</a>
|
|
</div>
|
|
<?= $this->endSection() ?>
|
|
|
|
<?= $this->section('scripts') ?>
|
|
<script>
|
|
setTimeout(function() {
|
|
window.location.href = "<?= base_url('/parent/enroll_classes'); ?>";
|
|
}, 5000);
|
|
</script>
|
|
<?= $this->endSection() ?>
|