{% extends "static_page.html" %} {% load static %} {% load i18n %} {% block navbar %}{% endblock %} {% block content %}

{% trans "Change Password" %}

{% if form.errors %} {% for field, error in form.errors.items %}

{{ error }}

{% endfor %} {% endif %}
{% csrf_token %}
{% url 'banned' as banned %}

{% blocktrans %}For security purposes, passwords should be at least 6 characters, and not feature on the list of banned passwords.{% endblocktrans %}

{% endblock %} {% block loading %} {% endblock %}