{% extends 'base.html' %} {% load i18n %} {% block centered_container %}

{% trans "Onboard your entity" %}

{% blocktrans %} Welcome to the example onboarding system of spid-cie-oidc-django. In this page you can register a OIDC Federation entity to be onboarded in the federation. The form has some preliminar validations for your entity configuration, once submitted, validated and tested, a Federation operator will enable your entity as a Descendant of the Federation Authority. {% endblocktrans%}

{% csrf_token %} {% for form_field in form %}
{% if form_field.field.widget.input_type == 'select'%}
{% elif form_field.name == 'public_jwks' %} {% else %} {% endif %}
{{ form_field.help_text }} {{ form_field.errors }}
{% endfor %}
{% endblock %}