This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
<?= $this->extend('layout/management_layout') ?>
|
||||
<?= $this->section('content') ?>
|
||||
|
||||
<style>
|
||||
.enrollment-email-preview-frame .email-container {
|
||||
max-width: 1280px;
|
||||
width: min(1280px, 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 ?? ''))) ?>">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() ?>
|
||||
Reference in New Issue
Block a user