{% extends "base.html" %} {% block title %}Edit Profile — Mimir{% endblock %} {% block content %}

Edit profile

{% csrf_token %} {% if errors.non_field_errors %}
{{ errors.non_field_errors|join:", " }}
{% endif %}
{% if errors.first_name %}
{{ errors.first_name|join:", " }}
{% endif %}
{% if errors.last_name %}
{{ errors.last_name|join:", " }}
{% endif %}
{% if errors.email %}
{{ errors.email|join:", " }}
{% endif %}
Changing your email will require re-verification. You will be logged out and your API token invalidated until the new address is verified.
Username cannot be changed.
Cancel
{% endblock %} {% block extra_js %} {% endblock %}