diff options
| author | Étienne Loks <etienne.loks@peacefrogs.net> | 2010-12-26 19:04:28 +0100 |
|---|---|---|
| committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2010-12-26 19:04:28 +0100 |
| commit | 84f5d4f5210ee75cb2eef8e7d21fbb13690f9f50 (patch) | |
| tree | 185b4a646f488661bb30e77ea96d1c5f21ea33dd /ishtar/templates/registration/password_reset_confirm.html | |
| parent | 622d1627ae53596e471fa8e0bad784b0a55ad2cb (diff) | |
| download | Ishtar-84f5d4f5210ee75cb2eef8e7d21fbb13690f9f50.tar.bz2 Ishtar-84f5d4f5210ee75cb2eef8e7d21fbb13690f9f50.zip | |
Integration of registration module
Diffstat (limited to 'ishtar/templates/registration/password_reset_confirm.html')
| -rw-r--r-- | ishtar/templates/registration/password_reset_confirm.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/ishtar/templates/registration/password_reset_confirm.html b/ishtar/templates/registration/password_reset_confirm.html new file mode 100644 index 000000000..53e1f8359 --- /dev/null +++ b/ishtar/templates/registration/password_reset_confirm.html @@ -0,0 +1,20 @@ +{% extends "base.html" %} +{% load i18n %} + +{% block content %} + +{% if validlink %} + +<form method="post" action=".">{% csrf_token %} + {{ form.as_p }} + + <input type="submit" value="{% trans 'Submit' %}" /> +</form> + +{% else %} + +<p>{% trans "Password reset failed" %}</p> + +{% endif %} + +{% endblock %} |
