{% extends "base.html" %} {% block title %}OAuth Clients - Mock API Admin{% endblock %} {% block content %}

OAuth Clients

Manage OAuth 2.0 client registrations.

New Client
{% if error %} {% endif %}
{% for client in clients %} {% else %} {% endfor %}
ID Client ID Name Redirect URIs Grant Types Scopes Status Created Actions
#{{ client.id }} {{ client.client_id }} {{ client.name }} {{ client.redirect_uris | join(', ') }} {{ client.grant_types | join(', ') }} {{ client.scopes | join(', ') }} {% if client.is_active %} Active {% else %} Inactive {% endif %} {{ client.created_at.strftime('%Y-%m-%d') }}

No OAuth clients found. Create your first client.

{% if total_pages > 1 %} {% endif %}
{% endblock %}