mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-22 17:08:44 -04:00
The service manual recommends to: > Make sure your ‘Continue’ button is: > > - labelled ‘Continue’, not ‘Next’ > - aligned to the left so users don’t miss it – https://www.gov.uk/service-manual/design/question-pages
22 lines
445 B
HTML
22 lines
445 B
HTML
{% from "components/radios.html" import radios %}
|
|
{% from "components/page-footer.html" import page_footer %}
|
|
|
|
{% extends "withnav_template.html" %}
|
|
|
|
{% block service_page_title %}
|
|
Add new template
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
<h1 class="heading-large">Add new template</h1>
|
|
|
|
<form method="post">
|
|
{{ radios(form.template_type) }}
|
|
{{ page_footer(
|
|
'Continue'
|
|
) }}
|
|
</form>
|
|
|
|
{% endblock %}
|