recreate project

This commit is contained in:
root
2026-02-10 22:11:06 -05:00
commit 663c0cdbda
10149 changed files with 1379710 additions and 0 deletions
+39
View File
@@ -0,0 +1,39 @@
<?= $this->extend('layout/email_layout') ?>
<?= $this->section('content') ?>
<p style="font-size:18px">Dear <?= esc($recipientName ?? 'Parent') ?>,</p>
<p style="font-size:18px">
Thank you for creating an account with us — were thrilled to welcome you to
<strong><?= esc($orgName ?? 'Al Rahma Sunday School') ?></strong> community!
</p>
<p style="font-size:18px">To activate your account, click the link below:</p>
<p>
<a href="<?= esc($activationLink ?? '#') ?>" style="font-size:18px; color:#007bff;">
Activate my account
</a>
</p>
<p style="font-size:18px">Once activated you will be able to:</p>
<ul style="font-size:18px">
<li>Access your dashboard</li>
<li>Register and enroll your child(ren) in classes</li>
<li>Receive school notifications and updates</li>
</ul>
<p style="font-size:18px">
Contact us at
<a href="mailto:<?= esc($contactInfo ?? 'alrahma.isgl@gmail.com') ?>" style="color:#0000EE;">
<?= esc($contactInfo ?? 'alrahma.isgl@gmail.com') ?>
</a>
if you have any questions.
</p>
<p style="font-size:18px">
Warm regards,<br>
<strong><?= esc($orgName ?? 'Al Rahma Sunday School') ?></strong>
</p>
<?= $this->endSection() ?>