{% extends "dashboard/base.html" %} {% from "components/forms.html" import text_input, textarea, button_primary, form_errors, success_alert %} {% set active_page = 'settings' %} {% block title %}Settings - CmdForge Dashboard{% endblock %} {% block dashboard_header %}

Settings

Manage your profile and account settings

{% endblock %} {% block dashboard_content %} {{ success_alert(success_message) }} {{ form_errors(errors) }}

Profile

This information will be displayed on your public profile.

@

Username cannot be changed

Brief description for your profile. Max 500 characters.

Email

Your email address for account notifications.

{{ user.email }}

{% if user.verified %}

Verified

{% else %}

Not verified

{% endif %}
{% if not user.verified %} {% endif %}

Change Password

Update your password to keep your account secure.

Minimum 8 characters

Danger Zone

Irreversible actions that affect your account.

Delete Account

Permanently delete your account and all associated data.

{% endblock %}