2011-09-04 04:21:51 +00:00
|
|
|
{% extends "registration/registration_base.html" %}
|
|
|
|
{% block title %}Password reset complete{% endblock %}
|
2011-11-19 00:50:47 +00:00
|
|
|
{% block doccontent %}
|
2012-01-13 17:34:42 +00:00
|
|
|
<div>
|
|
|
|
<h3>Password successfully reset!</h3>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
{% if not request.user.is_authenticated %}
|
2012-01-13 21:24:34 +00:00
|
|
|
<a href="{{ login_url }}" class="nounderline"><div class="actionbutton">Log in</div></a>
|
2012-01-13 17:34:42 +00:00
|
|
|
{% else %}
|
|
|
|
<a href="/" class="nounderline"><div class="actionbutton">Back to my account</div></a>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
2011-09-04 04:21:51 +00:00
|
|
|
{% endblock %}
|