{% extends 'affiliates_app/base_affiliate.html' %} {% load static %} {% block title %}Change Password | Affiliate Profile{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
🔐 Security

Change Password

Set a new, strong password for your affiliate account.


{% csrf_token %}
{% if form.old_password.errors %}
{{ form.old_password.errors.0 }}
{% endif %}
{% if form.new_password1.errors %}
{{ form.new_password1.errors.0 }}
{% endif %}
Your password must contain at least 8 characters and cannot be too common.
{% if form.new_password2.errors %}
{{ form.new_password2.errors.0 }}
{% endif %}
Cancel
{% if form.non_field_errors %}
{% for error in form.non_field_errors %}
{{ error }}
{% endfor %}
{% endif %}
{% endblock %}