{% extends "authentication/_base.html" %} {% load i18n %} {% load static %} {% load widget_tweaks %} {% block heading %} {% trans "Authentication" %} {% endblock heading %} {% block content %}
{% csrf_token %} {% if form.errors %} {% endif %}

{% trans "Please authenticate to change security related settings" %}

{% trans "Enter your password here" as password_placeholder %} {% render_field form.password|add_error_class:"border-red-500" placeholder=password_placeholder class="shadow appearance-none border rounded w-full py-2 px-3 text-gray-600 leading-tight focus:outline-none focus:shadow-outline" %}
{% endblock content %}