layerindex-web/templates/registration/password_reset_complete.html
Paul Eggleton 82266556cd Upgrade to Django 1.6+
I'd like to be upgrading to 1.8 but that causes problems with South, and
we're not quite ready to dispense with our existing migrations yet.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
2016-06-22 16:38:45 -05:00

11 lines
195 B
HTML

{% extends "base.html" %}
{% load i18n %}
{% block content %}
<p>{% trans "Password reset successfully" %}</p>
<p><a href="{% url "auth_login" %}">{% trans "Log in" %}</a></p>
{% endblock %}