You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

password_reset_complete.html 505B

1234567891011121314151617181920
  1. {% extends "admin/base_site.html" %}
  2. {% load i18n %}
  3. {% block breadcrumbs %}
  4. <div class="breadcrumbs">
  5. <a href="{% url 'admin:index' %}">{% trans 'Home' %}</a>
  6. &rsaquo; {% trans 'Password reset' %}
  7. </div>
  8. {% endblock %}
  9. {% block title %}{{ title }}{% endblock %}
  10. {% block content_title %}<h1>{{ title }}</h1>{% endblock %}
  11. {% block content %}
  12. <p>{% trans "Your password has been set. You may go ahead and log in now." %}</p>
  13. <p><a href="{{ login_url }}">{% trans 'Log in' %}</a></p>
  14. {% endblock %}