14 lines
468 B
PHP
Executable File
14 lines
468 B
PHP
Executable File
<?= $this->extend('layout/main_layout') ?>
|
|
<?= $this->section('content') ?>
|
|
|
|
<div class="container-fluid">
|
|
<div class="row">
|
|
<main class="col-md-9 ml-sm-auto col-lg-10 px-md-4">
|
|
<div class="alert alert-success mt-4">
|
|
<h4 class="alert-heading">Success!</h4>
|
|
<p>Students have been successfully withdrawn from the selected classes.</p>
|
|
</div>
|
|
</main>
|
|
</div>
|
|
</div>
|
|
<?= $this->endSection() ?>
|