authentic/src/authentic2/templates/authentic2/password_reset_no_account_b...

16 lines
525 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 }}, but no account was found associated with this address.
{% endblocktrans %}</p>
{% if registration_url %}
{% with _("Create an account") as button_label %}
{% include "emails/button-link.html" with url=registration_url label=button_label %}
{% endwith %}
{% endif %}
{% endblock %}