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

{% trans %}Reset Password{% endtrans %}

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

{% trans %}You can now reset the password for your account and log in. Please enter in a new password below.{% endtrans %}

{{ form.password.label(class="form-label") }} {{ form.password(class="form-control", autocomplete="new-password") }}
{{ form.submit(class="btn btn-block btn-primary w-100") }}
{{ form.nonce() }}
{% endwith %} {% else %} {% with form = Forms.auth.ResetPasswordRequestForm() %}

{% trans %}Please provide the email address associated with your account below.{% endtrans %}

{{ form.email.label(class="form-label") }} {{ form.email(class="form-control ") }}
{{ form.submit(class="btn btn-block btn-primary w-100") }}
{{ form.nonce() }}
{% endwith %} {% endif %}
{% endblock %}