mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-27 13:51:12 -05:00
Best-guess wording for what the labels and question should be. Adds a macro for rendering radio buttons from a WTForms field.
23 lines
545 B
HTML
23 lines
545 B
HTML
{% extends "withnav_template.html" %}
|
||
{% from "components/page-footer.html" import page_footer %}
|
||
{% from "components/textbox.html" import textbox %}
|
||
{% from "components/radios.html" import radios %}
|
||
|
||
{% block page_title %}
|
||
Add a new API key – GOV.UK Notify
|
||
{% endblock %}
|
||
|
||
{% block maincolumn_content %}
|
||
|
||
<h1 class="heading-large">
|
||
Create an API key
|
||
</h1>
|
||
|
||
<form method="post">
|
||
{{ radios(form.key_type) }}
|
||
{{ textbox(form.key_name, label='Name for this key') }}
|
||
{{ page_footer('Continue') }}
|
||
</form>
|
||
|
||
{% endblock %}
|