{% extends "auth/base.html" %} {% load static %} {% block title %}Change Password - {{ block.super }}{% endblock %} {% block content %}

Change Password

Update your account password

{% csrf_token %} {% if form.non_field_errors %}
{{ form.non_field_errors.0 }}
{% endif %}
{% if form.old_password.errors %}
{{ form.old_password.errors.0 }}
{% endif %}
Password must be at least 8 characters with uppercase, lowercase, number, and special character.
{% if form.new_password1.errors %}
{{ form.new_password1.errors.0 }}
{% endif %}
{% if form.new_password2.errors %}
{{ form.new_password2.errors.0 }}
{% endif %}

Security Tips
  • Use a unique password you don't use elsewhere
  • Include uppercase, lowercase, numbers, and symbols
  • Make it at least 8 characters long
  • Avoid common words and personal information
Your password is encrypted and secure. We never store it in plain text.
{% endblock %} {% block extra_js %} {% endblock %}