Files
notifications-admin/app/templates/views/templates/add.html
Chris Hill-Scott b4c05ed697 Use ‘Continue’ not ‘Next’ for button text
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
2017-07-24 16:52:17 +01:00

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 %}