]> git.frykholm.com Git - tranquillity.git/blob - templates/registration/password_reset_form.hml
Initial upload
[tranquillity.git] / templates / registration / password_reset_form.hml
1 {% extends "base_generic.html" %}
2 {% block content %}
3
4 <form action="" method="post">{% csrf_token %}
5 {% if form.email.errors %} {{ form.email.errors }} {% endif %}
6 <p>{{ form.email }}</p>
7 <input type="submit" class="btn btn-default btn-lg" value="Reset password" />
8 </form>
9
10 {% endblock %}