authentic/src/authentic2/templates/authentic2/password_reset_ldap_body.html

17 lines
672 B
HTML

{% extends "emails/body_base.html" %}
{% load i18n %}
{% block content %}
<p>{% trans "Hi," %}</p>
<p>{% blocktrans trimmed with hostname=request.get_host %}
You requested reset of your password on {{ hostname }}. Unfortunately, it cannot be done from this website, because your account is synchronised from a LDAP server. Hence password reset should be handled in the directory.
{% endblocktrans %}</p>
<p>{% trans "In the meantine, you can access your account using the button below." %}</p>
{% with _("Access account") as button_label %}
{% include "emails/button-link.html" with url=login_url label=button_label %}
{% endwith %}
{% endblock %}