Files
alrahma_sunday_school/app/Views/parent/success_message.php
T
2026-02-10 22:11:06 -05:00

18 lines
621 B
PHP

<?= $this->extend('layout/main_layout') ?>
<?= $this->section('content') ?>
<div class="message">
<img src="<?= base_url('public/images/registration-1.png') ?>" alt="Registration Success">
<h1>Your kid(s) has been Successfully registered!</h1>
<p>You will be redirected to the home page shortly.</p>
</div>
<?= $this->endSection() ?>
<?= $this->section('scripts') ?>
<script>
document.addEventListener('DOMContentLoaded', function() {
setTimeout(function() {
window.location.href = "<?= base_url('/parent_dashboard') ?>";
}, 5000);
});
</script>
<?= $this->endSection() ?>