25 lines
1003 B
HTML
25 lines
1003 B
HTML
{% extends 'emails/base_email_template.html' %}
|
|
{% load i18n %}
|
|
|
|
{% block title %}{% trans "Your PX360 Invitation Has Expired" %}{% endblock %}
|
|
{% block preheader %}{% trans "Your invitation to join PX360 has expired. Contact your administrator for a new invitation." %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<p style="margin: 0 0 15px;">
|
|
{% trans "Dear" %} <strong>{{ user.first_name }}</strong>,
|
|
</p>
|
|
|
|
<p style="margin: 0 0 20px;">
|
|
{% trans "Your invitation to join PX360 has expired." %}
|
|
</p>
|
|
|
|
<p style="margin: 0 0 5px;"><strong>{% trans "What to do next:" %}</strong></p>
|
|
<p style="margin: 0;">
|
|
{% trans "Please contact your administrator to request a new invitation. A new invitation link will be generated for you to complete your account setup." %}
|
|
</p>
|
|
|
|
<p style="margin: 20px 0 0; font-size: 14px; color: #666666;">
|
|
{% trans "If you believe this is an error or need further assistance, please reach out to your system administrator or the IT support team." %}
|
|
</p>
|
|
{% endblock %}
|