Files
root 889c037660
Deploy to Shared Hosting / Shared hosting deploy (push) Failing after 48s
Tests / PHPUnit (push) Failing after 1m22s
fix is_new issue with enrollment fixes
2026-08-20 19:57:25 -04:00

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() ?>