31 lines
1.0 KiB
PHP
31 lines
1.0 KiB
PHP
<?= $this->extend('layout/management_layout') ?>
|
|
<?= $this->section('content') ?>
|
|
|
|
<style>
|
|
.enrollment-email-preview-frame .email-container {
|
|
max-width: 640px;
|
|
width: min(640px, 100%);
|
|
}
|
|
</style>
|
|
|
|
<div class="container-fluid py-4">
|
|
<div class="d-flex align-items-center justify-content-between mb-3">
|
|
<div>
|
|
<h2 class="mb-1">Registration Email Preview</h2>
|
|
<div class="text-muted"><?= esc($schoolYear ?? '') ?> · Parent #<?= esc((string) ($parentId ?? '')) ?></div>
|
|
</div>
|
|
<a class="btn btn-secondary" href="<?= site_url('administrator/enrollment-admin?school_year=' . rawurlencode((string) ($schoolYear ?? ''))) ?>#emails-pane">Back</a>
|
|
</div>
|
|
|
|
<div class="mb-3">
|
|
<label class="form-label">Subject</label>
|
|
<input class="form-control" value="<?= esc($subject ?? '') ?>" readonly>
|
|
</div>
|
|
|
|
<div class="border rounded bg-white p-3 enrollment-email-preview-frame">
|
|
<?= $body ?? '' ?>
|
|
</div>
|
|
</div>
|
|
|
|
<?= $this->endSection() ?>
|