local changes from server
[redakcja.git] / redakcja / templates / registration / password_reset_form.html
1 {% extends "catalogue/base.html" %}
2
3 {% block inner_content %}
4
5 <h1 style="margin-bottom:1em">Reset password</h1>
6
7 <form action="" method="post">{% csrf_token %}
8 {{ form.email.errors }}
9 <label for="id_email">Email</label>
10 <input type="email" class="form-control" name="email">
11 <button style="margin-top:1em" type="submit" class="btn btn-default">Reset my password</button>
12 </form>
13
14
15 {% endblock %}