{% extends "crud/form.html" %} {% from "macros/form.html" import text_input, date_input %} {% set title = 'Create API Key' %} {% set custom_form_handler = true %} {% block form_fields %} {{ text_input('name', 'Key Name', required=true) }} {{ date_input('expiration', 'Expiration', value=default_expiration, min=min_expiration, help='Leave blank for a key that never expires.') }} {% endblock %} {% block extra_content %}

API Key Created

Important: Please save the token below. For security reasons, you will not be able to view it again.
Done
{% endblock %} {% block page_scripts %} {% endblock %}