Files
eveAI/eveai_app/templates/email/reset_password.html
Josako 17d32cd039 - Improve layout of emails sent
- Enable Scaleway TEM for the test environment.
2025-05-12 06:57:32 +02:00

22 lines
612 B
HTML

{% extends "email/base.html" %}
{% block content %}
<p>Hello,</p>
<p>You indicated you require a new password. Your administrator sent you this reset password mail.</p>
<div class="info-box">
<p>Click the below link to reset your password:</p>
<p><a href="{{ reset_url }}">Reset Password</a></p>
</div>
<div class="warning-box">
<strong>Important:</strong> If you didn't request a new password, please inform your administrator.
</div>
<div class="warning-box">
<strong>Important:</strong> Do not reply to this message. There's no one listening on the receiving side.
</div>
{% endblock %}