{% extends "base.html" %} {% load static %} {% block title %} Edit Profile | {{ user.username }} {% endblock title %} {% block description %} Update your profile information including username, email, avatar, domain, and other details. Ensure your profile is up-to-date and accurate. {% endblock description %} {% block keywords %} Edit Profile, Update Profile Information, Username, Email, Avatar, Domain, Profile Details {% endblock keywords %} {% block og_title %} Edit Profile - Update Your Information {% endblock og_title %} {% block og_description %} Edit your profile to keep your information current. Update your username, email, avatar, domain, and other personal details. {% endblock og_description %} {% block content %} {% include "includes/sidenav.html" %}

Edit Profile

Update your personal information and preferences

{% csrf_token %}
{% if form.user_avatar.value %} Profile Picture {% else %}
{% endif %}

Click the camera icon to update your profile picture

$

Social Links

Hide Issues

{% if form.email.errors %}
{{ form.email.errors }}
{% endif %}

Crypto Addresses

{% for tag in form.tags.field.queryset %}
{% endfor %}
{% for domain in form.subscribed_domains.field.queryset %}
{% endfor %}
{% for user in form.subscribed_users.field.queryset %}
{% endfor %}

Danger Zone

{% csrf_token %}
{% endblock content %}