HH/templates/config/emails/reset_password_email.html
ismail c5f76b3855
Some checks are pending
Build and Push Docker Image / build (push) Waiting to run
updates
2026-05-11 14:45:30 +03:00

38 lines
1.5 KiB
HTML

{% extends 'emails/base_email_template.html' %}
{% load i18n %}
{% block title %}{% trans "Your PX360 Password Has Been Reset - Al Hammadi Hospital" %}{% endblock %}
{% block preheader %}{% trans "Your password has been reset by an administrator. Find your new credentials below." %}{% endblock %}
{% block content %}
<p style="margin: 0 0 15px;">
{% trans "Dear" %} <strong>{{ user.get_full_name }}</strong>,
</p>
<p style="margin: 0 0 20px;">
{% trans "Your PX360 account password has been reset by an administrator. Please use the new credentials below to login." %}
</p>
<p style="margin: 0 0 5px;"><strong>{% trans "Email:" %}</strong> {{ user.email }}</p>
<p style="margin: 0 0 20px;"><strong>{% trans "Password:" %}</strong> {{ password }}</p>
<p style="margin: 0 0 25px;">
<strong>{% trans "Security Notice:" %}</strong> {% trans "Please change your password immediately after logging in for security purposes." %}
</p>
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%">
<tr>
<td align="center">
<a href="{{ login_url }}"
style="display: inline-block; padding: 12px 32px; font-size: 16px; font-weight: 600; color: #ffffff; text-decoration: none; border-radius: 6px; background-color: #005696;">
{% trans "Login to PX360" %}
</a>
</td>
</tr>
</table>
<p style="margin: 25px 0 0; font-size: 14px; color: #666666;">
{% trans "If you did not expect this password reset, please contact your system administrator immediately." %}
</p>
{% endblock %}