{% extends "main.html" %} {% block title %}{{ _("Reset Password") }}{% endblock %} {% block content %} {{ super() }} {% import '_form_macros.html' as macros %}
{{ form.csrf_token }}
{{ _('Password Reset for %(username)s', username=username) }}
{{ macros.with_errors(form.password, tabindex="1")}}
{{ macros.with_errors(form.password_confirm, tabindex="2")}}
{{ macros.with_errors(form.otp, tabindex="3", autocomplete="off")}}
{% endblock %}