{% extends "base.jinja2" %} {% block title %}{% trans %}Change your Password{% endtrans %}{% endblock %} {% block menubar %}
  • {{ icons.icon('server-network') }}
  • {% endblock menubar %} {% block content %}
    {{ csrf_input }} {% if next %}{% endif %}

    {% trans %}Change your Password{% endtrans %}

    {% if form.errors %}
    {{ form.old_password.errors }}
    {{ form.new_password1.errors }} {% if form.new_password1.help_text %}
    {{ form.new_password1.help_text|safe }}
    {% endif %}
    {{ form.new_password2.errors }}
    {% else %}
    {% if form.new_password1.help_text %}
    {{ form.new_password1.help_text|safe }}
    {% endif %}
    {% endif %}
    {% endblock %}