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
+29
View File
@@ -0,0 +1,29 @@
<?= $this->extend('layout/email_layout') ?>
<?= $this->section('content') ?>
<p style="font-size:18px">Dear <?= esc($recipientName) ?>,</p>
<p style="font-size:18px">
Thank you for creating an account with us — were thrilled to welcome you to
<strong><?= esc($orgName) ?></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>Receive school notifications and updates</li>
</ul>
<p style="font-size:18px">
Contact us at <a href="mailto:<?= esc($contactInfo) ?>" style="color:#0000EE;"><?= esc($contactInfo) ?></a>
if you have any questions.
</p>
<p style="font-size:18px">Warm regards,<br><strong><?= esc($orgName) ?></strong></p>
<?= $this->endSection() ?>