snipt/templates/registration/password_reset_done.html

14 lines
425 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">
We've sent an email with a link to reset your password. Follow the link to continue.
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 %}