password_reset_complete.html 423 B

1234567891011
  1. {% extends "pbp_store/store_base.html" %}
  2. {% load i18n %}
  3. {% load url from future %}
  4. {% block right-side %}{% endblock right-side %}
  5. {% block title %}{% trans "Password reset" %}{% endblock title %}
  6. {% block content_title %}<h2>{% trans "Your password has been reset" %}</h2>{% endblock content_title %}
  7. {% block body %}
  8. You can now <a href="{% url 'user_login' %}">signin</a> with your new password.
  9. {% endblock body %}