{% extends "base.html" %} {% from "components/ui.html" import page_header, breadcrumb_nav %} {% block title %}{{ _('OIDC Setup Wizard') }} - {{ app_name }}{% endblock %} {% block content %} {% set breadcrumbs = [ {'text': _('Admin'), 'url': url_for('admin.admin_dashboard')}, {'text': _('OIDC Settings'), 'url': url_for('admin.oidc_debug')}, {'text': _('Setup Wizard')} ] %} {{ page_header( icon_class='fas fa-magic', title_text=_('OIDC Setup Wizard'), subtitle_text=_('Guided step-by-step configuration for OpenID Connect authentication'), breadcrumbs=breadcrumbs ) }}
{{ _('The base URL of your OIDC provider (e.g., https://auth.example.com or https://login.microsoftonline.com/tenant-id/v2.0)') }}
{{ _('The client ID from your OIDC provider') }}
{{ _('The client secret from your OIDC provider') }}
{{ _('Choose whether to allow only OIDC login or both OIDC and local password authentication') }}