{% import "macros/buttons.html" as buttons %} {% import "macros/forms.html" as forms %} {% import "macros/modal.html" as modal %} {% import "macros/icons.html" as icons %} {% extends "admin/tenants/list.html" %} {% block head_title_content %}Create Tenant ยท {{ super() }}{% endblock %} {% set open_modal = true %} {% block modal %}
{% call modal.header() %} {% call modal.title() %}Create Tenant{% endcall %} {% endcall %} {% call modal.body() %}
{{ forms.form_field(form.name) }} {{ forms.form_field(form.registration_allowed) }} {{ forms.form_field(form.logo_url) }} {{ forms.form_field(form.application_url) }} {{ forms.form_field(form.theme) }} {{ forms.form_field(form.oauth_providers) }} {{ forms.form_csrf_token(form) }}
{% endcall %} {% call modal.footer() %} {% call buttons.submit('btn-sm') %} Create {% endcall %} {% endcall %}
{% endblock %}