{% extends "base.html" %} {% load static %} {% load i18n %} {% load allauth account %} {% block head_title %} {% trans "Change Password" %} {% endblock head_title %} {% block content %} {% trans "Change Your Password" %} {% trans "To enhance the security of your account, we recommend updating your password periodically." %} {% url 'account_change_password' as action_url %} {% csrf_token %} {{ redirect_field }} {% for field in form %} {{ field.label_tag }} {{ field }} {% if field.errors %} {{ field.errors }} {% endif %} {% endfor %} {% trans "Change Password" %} {% trans "Forgot Password?" %} {% endblock content %} {% block extra_body %} {{ block.super }} {% endblock extra_body %}
{% trans "To enhance the security of your account, we recommend updating your password periodically." %}