layerindex-web/templates/registration/password_change_form.html
Paul Eggleton 0c3ed04bcd Fix CSRF validation errors in password reset forms
Thanks to Michael Halstead <michael@yoctoproject.org> for this fix.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
2013-03-27 09:31:26 +00:00

12 lines
223 B
HTML

{% extends "base.html" %}
{% load i18n %}
{% block content %}
<form method="post" action=".">
{{ form.as_p }}
<input type="submit" class="btn" value="{% trans 'Submit' %}" />
{% csrf_token %}
</form>
{% endblock %}