{% extends 'rental_app/base_rental.html' %} {% block title %}Change Username{% endblock %} {% block content %}
Rental Owner Account

Change Username

Update the username used to sign in to your Rent in Sri Lanka account. Choose a clear and memorable username that you can use securely going forward.

Update Login Username

Your username is part of your account login identity. Changes take effect immediately after saving.

Current Username
{{ request.user.username }}
{% csrf_token %} {% for field in form %}
{{ field }} {% if field.help_text %}
{{ field.help_text }}
{% endif %} {% for error in field.errors %}
{{ error }}
{% endfor %}
{% endfor %}
After updating your username, continue using the same password unless you separately change it from the password settings page.
Cancel
{% if form.non_field_errors %}
{% for error in form.non_field_errors %}
{{ error }}
{% endfor %}
{% endif %}

Username Tips

A few reminders before you update your sign-in identity.

  • Choose a username you can easily remember for future sign-ins.
  • Your username must be unique and cannot already belong to another account.
  • This change does not alter your profile name, email address, or owner details.
  • Use the separate password page if you also want to update your account security.
{% endblock %}