{% extends "_layout.html" %} {% block title %}Overview{% endblock %} {% block content %}
Connected Apps
{{ stats.connected }}
{{ stats.available }} more available
Last Activity
{{ last_activity }}
● Operational
Auth Types
{{ stats.oauth }} / {{ stats.api_key }}
OAuth 2.0 / API Key

Connected Providers

Manage Connections →
{% if connected_providers %}
{% for p in connected_providers %}
{% if p.status == 'reauth' %} Re-auth required {% else %} Connected {% endif %}
{{ p.display_name }}
{{ p.description or p.host_url }}
{% if p.status == 'reauth' %} {% else %} {{ p.auth_type_label }}{% if p.scope_count %} · {{ p.scope_count }} scopes{% endif %} {% endif %}
{% endfor %}
{% else %}
No connections yet
Connect your first provider to get started.
Browse providers
{% endif %}
Need expert support?

Read the docs, file an issue, or open a discussion. Authsome is open source and runs entirely on your machine.

Contact Us
{% endblock %}