{% extends "site_base.html" %} {% load account_tags %} {% load i18n %} {% load site_defaults %} {% block head_title %}{% trans "Plenum: Email sent" %}{% endblock %} {% block body %}
{% if not resend %}

{% trans "Email sent." %}

{% blocktrans with email={{ 'THEME_CONTACT_EMAIL'|get_setting }} %}A message to reset your password has been sent. If you do not receive it within the next couple of minutes (also check your spam folder), please click "Resend Link" below or contact us at {{ email }}.{% endblocktrans %}

{% csrf_token %} {% for field in form %} {{ field.as_hidden }} {% endfor %}
{% else %}

{% trans "Email resent." %}

{% blocktrans with email={{ 'THEME_CONTACT_EMAIL'|get_setting }} %}Another message to reset your password has been sent. If you still do not receive either message, please contact us at {{ email }}.{% endblocktrans %}

{% endif %} {% endblock %}