{% extends 'dashboard/base.html' %} {% block title %}Settings{% endblock %} {% block content %}

Settings

Manage your profile, security preferences, and account actions.

Account Details

{% csrf_token %} {% if user_form.non_field_errors %}
{{ user_form.non_field_errors }}
{% endif %}

Personal Information

{{ user_form.first_name }} {% if user_form.first_name.errors %}
{{ user_form.first_name.errors|join:", " }}
{% endif %}
{{ user_form.last_name }} {% if user_form.last_name.errors %}
{{ user_form.last_name.errors|join:", " }}
{% endif %}
{{ user_form.email }} {% if user_form.email.errors %}
{{ user_form.email.errors|join:", " }}
{% endif %}

Security

When enabled, login requires a one-time code sent to your email.

Profile

{{ profile_form.company }} {% if profile_form.company.errors %}
{{ profile_form.company.errors|join:", " }}
{% endif %}
{{ profile_form.role }} {% if profile_form.role.errors %}
{{ profile_form.role.errors|join:", " }}
{% endif %}
{{ profile_form.website }} {% if profile_form.website.errors %}
{{ profile_form.website.errors|join:", " }}
{% endif %}
{{ profile_form.address }} {% if profile_form.address.errors %}
{{ profile_form.address.errors|join:", " }}
{% endif %}
{{ profile_form.bio }} {% if profile_form.bio.errors %}
{{ profile_form.bio.errors|join:", " }}
{% endif %}
{% endblock %}