nopaque/app/templates/auth/reset_password_request.html.j2
2019-10-24 13:13:34 +02:00

29 lines
806 B
Django/Jinja

{% extends "limited_width.html.j2" %}
{% block page_content %}
<div class="col s12 m4">
<h3>Lost password?</h3>
<p>After entering your email address you will get an email with instruchtions about how to reset your password.</p>
</div>
<div class="col s12 m8">
<div class="card small">
<form method="POST">
<div class="card-content">
{{ form.hidden_tag() }}
<div class="input-field">
{{ form.email(class='validate', type='email') }}
{{ form.email.label }}
{% for error in form.email.errors %}
<span class="helper-text red-text">{{ error }}</span>
{% endfor %}
</div>
</div>
<div class="card-action">
{{ form.submit(class='btn right') }}
</div>
</form>
</div>
</div>
{% endblock %}