snipt/templates/registration/password_reset_complete.html

14 lines
421 B
HTML
Raw Permalink Normal View History

2012-02-12 21:42:25 -08:00
{% extends "registration/registration_base.html" %}
2012-02-12 17:17:17 -08:00
2012-02-16 09:29:30 -08:00
{% block page-title %}Reset password - {{ block.super }}{% endblock %}
2012-02-12 21:42:25 -08:00
{% block body-class %}{{ block.super }} static{% endblock %}
2012-02-12 17:17:17 -08:00
{% block content %}
2012-02-12 21:42:25 -08:00
<div class="static-box">
<div class="alert alert-info alert-alone">
Password successfully changed. You may now <a href="{{ login_url }}">log in</a>.
2012-02-12 17:17:17 -08:00
</div>
2012-02-12 21:42:25 -08:00
</div>
2012-02-12 17:17:17 -08:00
{% endblock %}