{% 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 First name {{ user_form.first_name }} {% if user_form.first_name.errors %}{{ user_form.first_name.errors|join:", " }}{% endif %} Last name {{ user_form.last_name }} {% if user_form.last_name.errors %}{{ user_form.last_name.errors|join:", " }}{% endif %} Email {{ user_form.email }} {% if user_form.email.errors %}{{ user_form.email.errors|join:", " }}{% endif %} Security Two-Factor Authentication Enable 2FA When enabled, login requires a one-time code sent to your email. Profile Company {{ profile_form.company }} {% if profile_form.company.errors %}{{ profile_form.company.errors|join:", " }}{% endif %} Role {{ profile_form.role }} {% if profile_form.role.errors %}{{ profile_form.role.errors|join:", " }}{% endif %} Website {{ profile_form.website }} {% if profile_form.website.errors %}{{ profile_form.website.errors|join:", " }}{% endif %} Address {{ profile_form.address }} {% if profile_form.address.errors %}{{ profile_form.address.errors|join:", " }}{% endif %} Bio {{ profile_form.bio }} {% if profile_form.bio.errors %}{{ profile_form.bio.errors|join:", " }}{% endif %} Save changes {% endblock %}
Manage your profile, security preferences, and account actions.