Statistics
| Branch: | Tag: | Revision:

root / astakos / im / templates / registration / password_reset_form.html @ 890b0eaf

History | View | Annotate | Download (348 Bytes)

1
{% extends "base.html" %}
2

    
3
{% block title%}
4
        <h2>Reset password</h2>
5
{% endblock title%}
6

    
7
{% block body %}
8
<form action="{% url django.contrib.auth.views.password_reset %}" method="post">{% csrf_token %}
9
    {{form.as_p}}
10
  <div class="actions">
11
    <button type="submit" class="btn primary">Go</button>
12
  </div>
13
</form>
14
{% endblock body %}