snipt/templates/registration/password_reset_complete.html

14 lines
421 B
HTML

{% extends "registration/registration_base.html" %}
{% block page-title %}Reset password - {{ block.super }}{% endblock %}
{% block body-class %}{{ block.super }} static{% endblock %}
{% block content %}
<div class="static-box">
<div class="alert alert-info alert-alone">
Password successfully changed. You may now <a href="{{ login_url }}">log in</a>.
</div>
</div>
{% endblock %}