{% extends "wagtailadmin/admin_base.html" %} {% load wagtailadmin_tags i18n %} {% block titletag %} {% if validlink %} {% trans "Set your new password" %} {% else %} {% trans "Invalid password reset link" %} {% endif %} {% endblock %} {% block bodyclass %}login{% endblock %} {% block extra_css %} {{ block.super }} {% endblock %} {% block furniture %} {% if validlink %} {% csrf_token %} {% trans "Set your new password" %} {{ form.new_password1.label_tag }} {{ form.new_password1 }} {% if form.new_password1.errors %} {% for error in form.new_password1.errors %} {{ error }} {% endfor %} {% endif %} {{ form.new_password2.label_tag }} {{ form.new_password2 }} {% if form.new_password2.errors %} {% for error in form.new_password2.errors %} {{ error }} {% endfor %} {% endif %} {% trans 'Reset password' %} {% else %} {% trans "Invalid password reset link" %} {% trans "The password reset link was invalid, possibly because it has already been used." %} {% trans 'Request a new password reset' %} {% endif %} {% endblock %}
{{ error }}