{# .. screenshot:: |canaille|/admin/client/add :context: admin :align: right :width: 275px The client addition page. The client addition template. Displays a form to create a new :class:`~canaille.oidc.basemodels.Client`. :param form: The client creation form. :type form: :class:`~canaille.oidc.endpoints.forms.ClientAddForm`. #} {% extends theme('base.html') %} {% import 'macro/form.html' as fui %} {%- block title -%} {%- trans %}Add an application{% endtrans -%} {%- endblock -%} {% block script %} {% endblock %} {% block submenu %} {% trans %}Applications{% endtrans %} {% trans %}Tokens{% endtrans %} {% endblock %} {% block content %}
{% trans %}This token can be used to register a new application through the OAuth 2.0 Dynamic Client Registration Protocol.{% endtrans %} {% trans %}Read moreā¦{% endtrans %}
{% call fui.render_form(form) %}