{% extends 'layouts/base-fullscreen.html' %} {% block title %} Reset Request Form {% endblock title %} {% block stylesheets %}{% endblock stylesheets %} {% block content %}

Reset Form

{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
{{ message }}
{% endfor %} {% endif %} {% endwith %}
{{ form.hidden_tag() }}
{% if form.email.errors %} {{ form.email(placeholder="Email",autofocus=true,class="form-control",size=30) }}
{% for error in form.email.errors %} {{ error }} {% endfor %}
{% else %} {{ form.email(placeholder="Email",autofocus=true,class="form-control",size=30) }} {% endif %}
{% endblock content %} {% block javascripts %} {% endblock javascripts %}