{% extends 'base.html' %} {% load static i18n %} {% block title %}{% trans "Change Password" %} - Agdar{% endblock %} {% block content %}

{% trans "Change Password" %} {% trans "Update your account password" %}

{% trans "Use this form to change your password. For security reasons, you must enter your current password." %}

{% if messages %} {% for message in messages %} {% endfor %} {% endif %} {% if form.non_field_errors %} {% endif %}
{% csrf_token %}
{% if form.old_password.errors %}
{{ form.old_password.errors }}
{% endif %} {% trans "Enter your current password for verification." %}

{% if form.new_password1.errors %}
{{ form.new_password1.errors }}
{% endif %}
  • {% trans "Your password can't be too similar to your other personal information." %}
  • {% trans "Your password must contain at least 8 characters." %}
  • {% trans "Your password can't be a commonly used password." %}
  • {% trans "Your password can't be entirely numeric." %}
{% if form.new_password2.errors %}
{{ form.new_password2.errors }}
{% endif %} {% trans "Enter the same password as before, for verification." %}
{% trans "Cancel" %}
{% trans "Password Security Tips" %}
  • {% trans "Use a unique password that you don't use for other websites" %}
  • {% trans "Use a combination of uppercase and lowercase letters, numbers, and symbols" %}
  • {% trans "Avoid using personal information like your name, birthday, or common words" %}
  • {% trans "Consider using a password manager to generate and store strong passwords" %}
  • {% trans "Change your password regularly, especially if you suspect it may have been compromised" %}
{% endblock %}