Add basic functionality for self-registration.
[cas.git] / src / accounts / templates / registration / password_reset_done.html
1 {% extends "base.html" %}
2 {% load i18n %}
3
4 {% block breadcrumbs %}
5 <div class="breadcrumbs">
6 <a href="{% url 'admin:index' %}">{% trans 'Home' %}</a>
7 &rsaquo; {% trans 'Password reset' %}
8 </div>
9 {% endblock %}
10
11 {% block title %}{% trans 'Password reset successful' %}{% endblock %}
12
13 {% block content_enclosed %}
14
15 <h1>{% trans 'Password reset successful' %}</h1>
16
17 <p>{% trans "We've emailed you instructions for setting your password to the email address you submitted. You should be receiving it shortly." %}</p>
18
19 {% endblock %}