NewsBlur/templates/profile/forgot_password.xhtml

37 lines
1 KiB
HTML
Raw Normal View History

{% extends 'base.html' %}
{% load typogrify_tags utils_tags %}
{% block bodyclass %}NB-static{% endblock %}
{% block extra_head_js %}
{% include_stylesheets "common" %}
{% endblock %}
{% block content %}
<div class="NB-static-form-wrapper">
<div class="NB-delete-form NB-static-form">
<h2>Forgot your password? No problem!</h2>
<form action="" method="POST">{% csrf_token %}
<div class="NB-fields">
{{ forgot_password_form.email.label_tag }}
{{ forgot_password_form.email }}
</div>
{% if forgot_password_form.errors %}
<div class="NB-errors">
{% for field, error in forgot_password_form.errors.items %}
{{ error|safe }}
{% endfor %}
</div>
{% endif %}
<input type="submit" class="submit-button NB-modal-submit-button NB-modal-submit-green" value="Email me the password change form"></button>
</form>
</div>
</div>
{% endblock %}