{% extends 'admin/base_site.html' %} {% load i18n static %} {% load adminlte2_tags %} {% block stylesheets %} {{ block.super }} {% endblock stylesheets %} {% block breadcrumbs %}
  • {% trans 'Home' %}
  • {% trans 'Password reset confirmation' %}
  • {% endblock %} {% block content %} {% if validlink %}

    {% trans "Please enter your new password twice so we can verify you typed it in correctly." %}

    { % csrf_token %}
    {{ form.new_password1.errors }} {{ form.new_password1|add_class:'form-control' }}
    {{ form.new_password2.errors }} {{ form.new_password2|add_class:'form-control' }}
    {% else %}

    {% trans "The password reset link was invalid, possibly because it has already been used. Please request a new password reset." %}

    {% endif %} {% endblock %}