{% extends 'emails/base_email_template.html' %} {% load i18n %} {% block title %}{% trans "Your PX360 Account Has Been Created - Al Hammadi Hospital" %}{% endblock %} {% block preheader %}{% trans "Your account is ready." %}{% endblock %} {% block content %}

{% trans "Dear" %} {{ user.get_full_name }},

{% trans "An account has been created for you on PX360." %}

{% trans "Email:" %} {{ user.email }}

{% if temp_password %}

{% trans "Temporary Password:" %} {{ temp_password }}

{% endif %}
{% if reset_url %}

{% trans "Important:" %} {% trans "For security, please set your password using the link below." %}

{% trans "Set New Password" %}
{% else %}

{% trans "You can now log in using the credentials provided to you by your administrator." %}

{% trans "Log In" %}
{% endif %}

{% trans "If you did not expect this account creation, please contact your system administrator immediately." %}

{% endblock %}