{% extends "base.html" %} {% block title %}My Profile - AgentHub{% endblock %} {% block content %}

My Profile

Manage your account information and activity

Profile Information
{{ current_user.full_name[0] if current_user.full_name else current_user.email[0] }}
Full Name {{ current_user.full_name or 'Not set' }}
Email Address {{ current_user.email }}
Account Type {% if current_user.is_admin %} Administrator {% else %} User {% endif %}
Member Since {{ current_user.created_at.strftime('%B %Y') if current_user.created_at else 'Unknown' }}
Account Overview
-
Total Agents
-
Active Agents
-
In Development
-
Last Activity
Recent Activity
View All My Agents
Loading...
{% endblock %}