ccdb-api/ccdb/templates/account/password_reset_done.html
Matthew Dillon 7ba937ef66 INITIAL
2016-01-19 15:10:09 -07:00

23 lines
580 B
HTML

{% extends "account/base.html" %}
{% load i18n %}
{% load account %}
{% block head_title %}{% trans "Password Reset" %}{% endblock %}
{% block content %}
<div class="row">
<div class="col-xs-12">
<h2>{% trans "Password Reset" %}</h2>
{% if user.is_authenticated %}
{% include "account/snippets/already_logged_in.html" %}
{% endif %}
<p>
{% blocktrans %}
We have sent you an e-mail. Please contact us if you do not
receive it within a few minutes.
{% endblocktrans %}
</p>
</div>
</div>
{% endblock %}