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

Change Password

Change Your Password

{% if messages %} {% for message in messages %} {% endfor %} {% endif %} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %}
For security reasons, please enter your current password to confirm your identity.
{% csrf_token %}
{% if form.old_password.errors %}
{{ form.old_password.errors.0 }}
{% endif %}
{% if form.new_password1.errors %}
{{ form.new_password1.errors.0 }}
{% endif %}
Password requirements:
At least 8 characters
One uppercase letter
One lowercase letter
One number
{% if form.new_password2.errors %}
{{ form.new_password2.errors.0 }}
{% endif %}
Important: After changing your password, you will be logged out of all devices and need to sign in again.
Cancel
Security Tips
  • Use a unique password that you don't use elsewhere
  • Include a mix of letters, numbers, and special characters
  • Avoid using personal information in your password
  • Consider using a password manager
  • Change your password regularly
{% endblock %}