mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-06-04 21:40:23 -04:00
This commit examines all the pages that use the page footer component, and determines whether they should have a back button, a secondary link, both or neither.
21 lines
465 B
HTML
21 lines
465 B
HTML
{% extends "withnav_template.html" %}
|
|
{% from "components/page-footer.html" import page_footer %}
|
|
{% from "components/textbox.html" import textbox %}
|
|
|
|
{% block page_title %}
|
|
GOV.UK Notify | API keys and documentation
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
<h1 class="heading-large">
|
|
Add a new API key
|
|
</h1>
|
|
|
|
<form method="post">
|
|
{{ textbox(key_name, hint='eg CRM application') }}
|
|
{{ page_footer('Continue') }}
|
|
</form>
|
|
|
|
{% endblock %}
|