{% extends "base.html" %} {% block stylesheets %} {% endblock %} {% block content %}

Reset Password

{% include "components/errors.html" %} {% if mode == "set" %} {% with form = Forms.auth.ResetPasswordForm() %}

You can now reset the password for your account and log in. Please enter in a new password below.

{{ form.password.label }} {{ form.password(class="form-control") }}
{{ form.submit(class="btn btn-md btn-primary float-right") }}
{{ form.nonce() }}
{% endwith %} {% else %} {% with form = Forms.auth.ResetPasswordRequestForm() %}

Please provide the email address associated with your account below.

{{ form.email.label }} {{ form.email(class="form-control") }}
{{ form.submit(class="btn btn-md btn-primary float-right") }}
{{ form.nonce() }}
{% endwith %} {% endif %}
{% endblock %} {% block scripts %} {% endblock %}