{% extends "admin/base_initial.html" %} {% load i18n static admin_kubi_tags %} {% block bodyclass %}{{ block.super }} password-reset auth{% endblock %} {% block title %}{% translate "Password reset" %}{% endblock %} {% block initial-content %}
{% csrf_token %} {% if validlink %}

{% translate 'Enter new password' %}

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

{% translate 'New password' as new_password1_label %} {{ form.new_password1.errors }}
{% translate 'Confirm password' as new_password2_label %} {{ form.new_password2.errors }}
{% else %}

{% translate 'Password reset unsuccessful' %}

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

{% endif %}
{% url 'admin:index' as admin_url %} {% if admin_url %}

{% translate 'Go back to the login page.' %}

{% endif %} {% endblock %}