{% extends "full_layout.html" %} {% import "macros/fields.html" as fields %} {% block title %}Create New Application{% endblock %} {% block subnav_header %} Create New Application {% endblock %} {% block subnav_items %} {% endblock %} {% block content %}

Application

{{ form.csrf_token }}
{{ fields.form_field(form.name) }} {{ fields.form_field(form.resource_group) }}
{{ fields.form_field(form.audience, tooltip="This feature concludes the value to assert the applications purpose on your back-end. If there's a product that is backed with several services behind it and you'd like to allow access to one of the services, use this function to do so.") }} {{ fields.form_readonly_field("To be generated", "Token audience", "token-audience", tooltip="The Token Audience value consists of product prefixes and suffixes from the editable Audience field.
For example, Product "test_product" and Audience "test_audience" would become "test_product|test_audience".") }}
{{ fields.form_field(form.ttl) }} {{ fields.form_field(form.scope) }}
Cancel
{% endblock %} {% block js %} {{ super() }} {% endblock %}