File size: 3,071 Bytes
27c799c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | {% extends "authentication/email/base_email.html" %}
{% block content %}
<table width="100%" cellpadding="0" cellspacing="0">
<tr>
<td style="padding: 48px 0 32px 0; text-align:center;">
<div style="display:inline-block; width:72px; height:72px; background:linear-gradient(135deg, #F5A623, #FDB835); border-radius:50%; line-height:72px; text-align:center; font-size:28px; margin-bottom:24px;">
✅
</div>
<h1 style="font-family:'Playfair Display','Georgia',serif; font-size:30px; font-weight:700; color:#1A4D3C; line-height:1.2; margin-bottom:12px;">
Password Reset Successful
</h1>
<p style="font-family:'Inter',Arial,sans-serif; font-size:16px; color:#555; line-height:1.6; max-width:420px; margin:0 auto;">
Your Fashionistar password has been reset. You can now log in with your new credentials.
</p>
</td>
</tr>
<!-- Success card -->
<tr>
<td style="padding: 0 0 32px 0;">
<table width="100%" cellpadding="0" cellspacing="0">
<tr>
<td style="background:linear-gradient(135deg,#1A4D3C 0%,#0D3327 100%); border-radius:16px; padding:36px 40px; text-align:center;">
<p style="font-family:'Inter',Arial,sans-serif; font-size:14px; color:rgba(255,255,255,0.8); line-height:1.7; margin-bottom:24px;">
Your account is secured with your new password.<br>
Keep it safe and never share it with anyone.
</p>
<a href="{{ SITE_URL }}/login/"
style="display:inline-block; padding:16px 48px; background:linear-gradient(135deg,#F5A623,#FDB835); color:#1A1A1A; font-family:'Inter',Arial,sans-serif; font-size:15px; font-weight:700; border-radius:50px; text-decoration:none; box-shadow:0 4px 20px rgba(245,166,35,0.4);">
Log In to Fashionistar →
</a>
</td>
</tr>
</table>
</td>
</tr>
<!-- Security tip -->
<tr>
<td style="padding: 0 0 48px 0;">
<table width="100%" cellpadding="0" cellspacing="0" style="background:#F9F7F0; border-radius:12px; border-left:4px solid #F5A623;">
<tr>
<td style="padding:20px 24px;">
<p style="font-family:'Inter',Arial,sans-serif; font-size:13px; font-weight:600; color:#1A4D3C; margin-bottom:8px;">
💡 Security Tips:
</p>
<p style="font-family:'Inter',Arial,sans-serif; font-size:13px; color:#666; line-height:1.7; margin-bottom:6px;">
• Use a unique password you don't use on any other site
</p>
<p style="font-family:'Inter',Arial,sans-serif; font-size:13px; color:#666; line-height:1.7; margin-bottom:6px;">
• Combine uppercase, lowercase, numbers, and symbols
</p>
<p style="font-family:'Inter',Arial,sans-serif; font-size:13px; color:#666; line-height:1.7;">
• Consider enabling two-factor authentication on your profile
</p>
</td>
</tr>
</table>
</td>
</tr>
</table>
{% endblock %}
|