{% extends "base.html" %} {% block title %}Profile · Cross-Auth FastAPI Hybrid Example{% endblock %} {% block content %}
Signed In

{{ user.email }}

This page is protected by the session cookie written either by CrossAuth.login(...) or by the GitHub session-social callback flow. The same backend also exposes bearer-token APIs for the separate SPA demo.

Local User

User ID  {{ user.id }}

Email verified   {% if user.email_verified %} yes {% else %} no {% endif %}

Social accounts

{% if user.social_accounts %}
    {% for account in user.social_accounts %}
  • {{ account.provider }} · provider user {{ account.provider_user_id }} {% if account.provider_email %} · {{ account.provider_email }} {% endif %} {% if account.provider_email_verified %} verified {% else %} unverified or unknown {% endif %}
  • {% endfor %}
{% else %} none linked {% endif %}
Home /api/me Open SPA demo Connect GitHub (session)

What This Backend Covers

Recent Hook Activity

{% if hook_events %} {% else %} no hook events yet {% endif %}
{% endblock %} {% block scripts %} {% endblock %}