{% extends "unauth.html" %} {% from "library.j2" import standard_button, render_errors %} {% block style %} {{ super() }} {% endblock %} {% block head_lead %} {{ super() }} {% trans %}Reset your password | Snikket{% endtrans %} {% endblock %} {% block content %}
{{- form.csrf_token -}}

{% trans %}Reset your password online{% endtrans %}

{% trans %}To reset your password online, fill out the fields below and confirm using the button.{% endtrans %}

{%- call render_errors(form) %}{% endcall -%}
{{ form.password.label }} {{ form.password(autocomplete="new-password") }}
{{ form.password_confirm.label }} {{ form.password_confirm(autocomplete="new-password") }}
{%- call form_button("passwd", form.action_reset, class="primary") -%}{%- endcall -%}
{% endblock %}