{% extends "layout.html" %} {% block title %}{% trans %}Configure Server{% endtrans %}{% endblock %} {% block content %}

{% trans %}Choose a provider{% endtrans %}

{% trans %}Enter the URL of your OAuth2 or OpenID Connect provider to validate it and discover configuration options.{% endtrans %}

{{ form.hidden_tag() }} {% if form.issuer_url.errors %} {% for error in form.issuer_url.errors %} {{ error }} {% endfor %} {% endif %}
{{ form.issuer_url(class="form-control") }} {{ form.submit(class="primary") }}
{% trans %}What happens next?{% endtrans %}
  1. {% trans %}Auth Playground will fetch the server's metadata from{% endtrans %} /.well-known/openid-configuration {% trans %}or{% endtrans %} /.well-known/oauth-authorization-server
  2. {% trans %}If valid, Auth Playground will show you multiple configuration options:{% endtrans %}
    • {% trans %}Automatic registration (if supported){% endtrans %}
    • {% trans %}Manual configuration via web form{% endtrans %}
    • {% trans %}Environment variables setup{% endtrans %}
{% if config.DEBUG %} {% include "static-configuration.html" %} {% endif %} {% endblock %}