{# .. 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 submenu %} {% trans %}Emails{% endtrans %} {% trans %}Applications{% endtrans %} {% trans %}Tokens{% endtrans %} {% trans %}Codes{% endtrans %} {% endblock %} {% block content %}

{% trans %}Add an application{% endtrans %}

{{ fui.render_form(form, _("Create"), csrf=false) }}
{% endblock %}