- Add 35 branded HTML email templates with Nxtgauge styling - Create email template engine with base template system - Add email management API for admin panel - Wire email triggers from all services - All services compile successfully
37 lines
904 B
HTML
37 lines
904 B
HTML
<!-- Password Reset -->
|
|
<h1 class="email-title">Reset Your Password</h1>
|
|
|
|
<p>Hi {{first_name}},</p>
|
|
<p>
|
|
We received a request to reset your password. Click the button below to set a
|
|
new password:
|
|
</p>
|
|
|
|
<div style="text-align: center">
|
|
<a href="{{reset_url}}" class="cta-button">Reset Password</a>
|
|
</div>
|
|
|
|
<div class="info-box">
|
|
<p class="info-box-title">🔒 Security Notice</p>
|
|
<p style="margin: 0">
|
|
This link will expire in <strong>1 hour</strong>. If you didn't request
|
|
this, please ignore this email and your password will remain unchanged.
|
|
</p>
|
|
</div>
|
|
|
|
<p style="margin-top: 30px">
|
|
If the button doesn't work, copy and paste this link into your browser:
|
|
</p>
|
|
<p
|
|
style="
|
|
background: #f3f4f6;
|
|
padding: 10px;
|
|
border-radius: 4px;
|
|
font-size: 12px;
|
|
word-break: break-all;
|
|
"
|
|
>
|
|
{{reset_url}}
|
|
</p>
|
|
|
|
<p>Best regards,<br /><strong>The Nxtgauge Team</strong></p>
|