mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-06-06 06:20:53 -04:00
- Deleted /stylesheets folder - Removed sass build from gulpfile - Changed gov links to usa links - Changed other govuk styles, like breadcrumbs - Changed name of uk_components file to us_components - Fixed a few tests that broke on account of the changes
27 lines
761 B
HTML
27 lines
761 B
HTML
{% extends "withnav_template.html" %}
|
|
{% from "components/page-header.html" import page_header %}
|
|
{% from "components/page-footer.html" import page_footer %}
|
|
{% from "components/banner.html" import banner_wrapper %}
|
|
{% from "components/form.html" import form_wrapper %}
|
|
{% from "components/us_components/back-link/macro.njk" import govukBackLink %}
|
|
|
|
{% block service_page_title %}
|
|
Create an API key
|
|
{% endblock %}
|
|
|
|
{% block backLink %}
|
|
{{ govukBackLink({ "href": url_for('main.api_keys', service_id=current_service.id) }) }}
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
{{ page_header('Create an API key') }}
|
|
|
|
{% call form_wrapper() %}
|
|
{{ form.key_name }}
|
|
{{ form.key_type }}
|
|
{{ page_footer('Continue') }}
|
|
{% endcall %}
|
|
|
|
{% endblock %}
|