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

Change Username

Pick a new, unique username for your affiliate account.


{% csrf_token %} {% for field in form %}
{% if field.name == 'new_username' %} {% elif field.name == 'password' %} {% else %} {% endif %} {{ field }} {% if field.help_text %} {{ field.help_text }} {% endif %} {% for error in field.errors %}
{{ error }}
{% endfor %}
{% endfor %}
Cancel
{% if form.non_field_errors %}
{% for error in form.non_field_errors %}
{{ error }}
{% endfor %}
{% endif %}
{% endblock %}