github.com/blystad/deis@v0.11.0/controller/web/templates/account/password_reset_done.html (about) 1 {% extends "account/base.html" %} 2 3 {% load i18n %} 4 {% load account %} 5 6 {% block head_title %}{% trans "Password Reset" %}{% endblock %} 7 8 {% block content %} 9 <h1>{% trans "Password Reset" %}</h1> 10 11 {% if user.is_authenticated %} 12 {% include "account/snippets/already_logged_in.html" %} 13 {% endif %} 14 15 <p>{% blocktrans %}We have sent you an e-mail. Please contact us if you do not receive it within a few minutes.{% endblocktrans %}</p> 16 {% endblock %}