39 lines
1.7 KiB
HTML
39 lines
1.7 KiB
HTML
{% extends 'emails/base_email_template.html' %}
|
|
{% load i18n %}
|
|
|
|
{% block title %}{% trans "Reminder: Complete Your PX360 Account Setup - Al Hammadi Hospital" %}{% endblock %}
|
|
{% block preheader %}{% trans "Your PX360 account setup is pending. Please complete before expiry." %}{% 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 15px;">
|
|
{% trans "We noticed that you haven't completed your PX360 account setup yet. Your invitation is still active, and we'd love to have you on board!" %}
|
|
</p>
|
|
|
|
<p style="margin: 0 0 20px;">
|
|
{% trans "Click the button below to continue where you left off:" %}
|
|
</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 Your Setup" %}
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<p style="margin: 25px 0 0; font-size: 14px; color: #666666;">
|
|
<strong>{% trans "Time Sensitive:" %}</strong> {% trans "Your invitation will expire in" %} <strong>{{ days_remaining }} {% trans "days" %}</strong>. {% trans "After that, you'll need to request a new invitation from your administrator." %}
|
|
</p>
|
|
|
|
<p style="margin: 15px 0 0; font-size: 14px; color: #666666;">
|
|
{% trans "Need help? Contact our support team at support@alhammadi.com or call +966 11 123 4567." %}
|
|
</p>
|
|
{% endblock %}
|