Add basic functionality for self-registration.
[cas.git] / src / accounts / templates / registration / password_reset_complete.html
1 {% extends "base.html" %}
2 {% load i18n %}
3
4 {% block title %}{% trans 'Password reset complete' %}{% endblock %}
5
6 {% block content_enclosed %}
7
8
9 <h1>{% trans 'Password reset complete' %}</h1>
10
11 <p>{% trans "Your password has been set.  You may go ahead and log in now." %}</p>
12
13 <p><a href="{{ login_url }}">{% trans 'Log in' %}</a></p>
14
15
16 {% endblock %}