{% 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' }}
Authentication Method {% if current_user.auth_provider == 'azure_ad' %} Microsoft SSO {% else %} Local (Email/Password) {% endif %}
{% if current_user.auth_provider != 'azure_ad' %}
Change Password
Password must be at least 8 characters.
Password Tips
  • Use at least 8 characters
  • Include a mix of letters, numbers, and symbols
  • Avoid using personal information
  • Don't reuse passwords from other sites
{% endif %}
Account Overview
-
Total Agents
-
Active Agents
-
In Development
-
Last Activity
Recent Activity
View All My Agents
Loading...
{% endblock %}