summaryrefslogtreecommitdiff
path: root/ishtar_common/templates/registration/password_reset_confirm.html
blob: b0e2cc142d08556953ae81e2e58618effe428015 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{% extends "base.html" %}
{% load i18n %}

{% block content %}

{% if validlink %}
<div class='form'>
<form method="post" action=".">{% csrf_token %}
  <table>
  {{ form.as_table }}
  <tr><td colspan='2'><input type="submit" value="{% trans 'Submit' %}" /></td></tr>
  </table>
</form>
</div>
{% else %}
<div class='info'>
<p>{% trans "Password reset failed" %}</p>
</div>
{% endif %}

{% endblock %}