diff options
Diffstat (limited to 'tbc/static/admin/templates/registration/password_reset_complete.html')
-rw-r--r-- | tbc/static/admin/templates/registration/password_reset_complete.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tbc/static/admin/templates/registration/password_reset_complete.html b/tbc/static/admin/templates/registration/password_reset_complete.html new file mode 100644 index 0000000..19f87a5 --- /dev/null +++ b/tbc/static/admin/templates/registration/password_reset_complete.html @@ -0,0 +1,20 @@ +{% extends "admin/base_site.html" %} +{% load i18n %} + +{% block breadcrumbs %} +<div class="breadcrumbs"> +<a href="{% url 'admin:index' %}">{% trans 'Home' %}</a> +› {% trans 'Password reset' %} +</div> +{% endblock %} + +{% block title %}{{ title }}{% endblock %} +{% block content_title %}<h1>{{ title }}</h1>{% endblock %} + +{% block content %} + +<p>{% trans "Your password has been set. You may go ahead and log in now." %}</p> + +<p><a href="{{ login_url }}">{% trans 'Log in' %}</a></p> + +{% endblock %} |