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
This commit is contained in:
Chris Hill-Scott
2017-07-19 12:41:14 +01:00
parent b003162932
commit b4c05ed697
6 changed files with 6 additions and 6 deletions

View File

@@ -29,7 +29,7 @@
</div>
{% endif %}
</div>
{{ page_footer('Next', back_link=back_link) }}
{{ page_footer('Continue', back_link=back_link) }}
</form>
{{ template|string }}

View File

@@ -87,7 +87,7 @@
</p>
{{ page_footer(
button_text='Next step'
button_text='Continue'
) }}
{{ page_footer(

View File

@@ -17,7 +17,7 @@
<form method="post" class="bottom-gutter-2">
{{ radios(form.support_type) }}
{{ page_footer('Next') }}
{{ page_footer('Continue') }}
</form>
<h2 class="heading-medium">

View File

@@ -15,7 +15,7 @@
</h1>
<form method="post">
{{ radios(form.severe) }}
{{ page_footer('Next') }}
{{ page_footer('Continue') }}
</form>
<h2 class="heading-small">
Its only an emergency if:

View File

@@ -14,7 +14,7 @@
<form method="post">
{{ radios(form.template_type) }}
{{ page_footer(
'Next'
'Continue'
) }}
</form>

View File

@@ -15,7 +15,7 @@
{{ template|string }}
<div class="page-footer">
<a href="{{ url_for('.send_test', service_id=current_service.id, template_id=template.id, help=2) }}" class="button">Next</a>
<a href="{{ url_for('.send_test', service_id=current_service.id, template_id=template.id, help=2) }}" class="button">Continue</a>
</div>
{% endblock %}