{% extends 'accounts/base.html' %} {% load static %} {% block title %}Change Password - Accounts{% endblock %} {% block breadcrumb %} {% endblock %} {% block page_header %}

Change Password

Update your account password for better security

Back to Profile
{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

Change Your Password

Keep your account secure with a strong password

{% if messages %} {% for message in messages %} {% endfor %} {% endif %} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %} {% if user.last_login %}
Last password change: {{ user.password_changed_at|default:"Not available" }}
{% endif %}
{% csrf_token %}
Enter your current password to verify your identity
{% if form.old_password.errors %}
{{ form.old_password.errors.0 }}
{% endif %}
{% if form.new_password1.errors %}
{{ form.new_password1.errors.0 }}
{% endif %}
Enter a password to see strength
{% if form.new_password2.errors %}
{{ form.new_password2.errors.0 }}
{% endif %}
Password Requirements
At least 8 characters long
Contains uppercase letter (A-Z)
Contains lowercase letter (a-z)
Contains number (0-9)
Contains special character (!@#$%^&*)
Passwords match
Different from current password
Cancel
Security Tips
Use a unique password
Don't reuse passwords from other accounts or services.
Make it memorable
Use a passphrase or combination of words that's easy for you to remember.
Consider a password manager
Use a reputable password manager to generate and store strong passwords.
Enable two-factor authentication
Add an extra layer of security to your account.
{% endblock %} {% block extra_js %} {% endblock %}