HH/templates/accounts/onboarding/invitation_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

41 lines
1.8 KiB
HTML

{% extends 'emails/base_email_template.html' %}
{% load i18n %}
{% block title %}{% trans "Welcome to PX360 - Al Hammadi Hospital" %}{% endblock %}
{% block preheader %}{% trans "You have been invited to join PX360. Complete your account setup." %}{% endblock %}
{% block content %}
<p style="margin: 0 0 15px;">
{% blocktrans with name=user.first_name|default:user.email %}Hello <strong>{{ name }}</strong>,{% endblocktrans %}
</p>
<p style="margin: 0 0 20px;">
{% trans "You have been invited to join PX360, our comprehensive Patient Experience management platform. To complete your account setup, please click the button below." %}
</p>
<p style="margin: 0 0 5px;"><strong>{% trans "During onboarding, you will:" %}</strong></p>
<p style="margin: 0 0 5px;">- {% trans "Learn about PX360 features and your role" %}</p>
<p style="margin: 0 0 5px;">- {% trans "Set up your profile and preferences" %}</p>
<p style="margin: 0 0 5px;">- {% trans "Complete required training" %}</p>
<p style="margin: 0 0 25px;">- {% trans "Activate your account" %}</p>
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%">
<tr>
<td align="center">
<a href="{{ invitation_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 "Complete Account Setup" %}
</a>
</td>
</tr>
</table>
<p style="margin: 25px 0 0; font-size: 14px; color: #666666;">
<strong>{% trans "Important:" %}</strong> {% trans "This invitation link will expire in 7 days." %}
</p>
<p style="margin: 15px 0 0; font-size: 13px; color: #999999;">
{% trans "Need help? Contact support@alhammadi.com or call +966 11 123 4567." %}
</p>
{% endblock %}