{% extends "adminlte_full/base.html" %} {% import "adminlte_full/macros/bootstrap4.html" as bootstrap %} {% import "adminlte_full/macros/widgets.html" as widgets %} {% set title = adminlte.gettext('Change my password') %} {% block page_title %}{{ title }}{% endblock %} {% block breadcrumbs %} {{ super() }} {{ bootstrap.breadcrumb(title) }} {% endblock breadcrumbs %} {% block page_content %}

{% if username %} {{ adminlte.gettext('Enter a new password for the user %(username)s.', username=username) }} {% else %} {{ adminlte.gettext('Enter a new password') }} {% endif %}

{{ bootstrap.form_fields(form, placeholder=true) }}
{% endblock %}