snipt/templates/registration/password_change_done.html

14 lines
372 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 %}Change password - {{ block.super }}{% endblock %}
2012-02-12 17:17:17 -08:00
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.
</div>
2012-02-12 17:17:17 -08:00
</div>
{% endblock %}