{% extends "setup/base.html" %} {% block title %}Authentication Setup - Skrift{% endblock %} {% block content %}

Authentication Methods

Configure at least one primary authentication method. Bundled methods include OAuth, dummy, and passkey.

The base URL for OAuth callbacks (auto-detected from your current URL)

{% for key, method in methods.items() %}

{{ method.name }}

Setup Instructions
{{ method.instructions }}
{% if method.console_url %}

Open Developer Console

{% endif %}
{% if method.auth_method_type == 'oauth' %}
{{ redirect_base_url }}/auth/{{ key }}/callback
{% endif %} {% for field in method.fields %}
{% endfor %}
{% endfor %}
Back
{% endblock %} {% block scripts %} {% endblock %}