mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-05-05 16:38:59 -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
571 B
HTML
22 lines
571 B
HTML
{% extends "withnav_template.html" %}
|
|
{% from "components/page-footer.html" import page_footer %}
|
|
{% from "components/textbox.html" import textbox %}
|
|
{% from "components/api-key.html" import api_key %}
|
|
|
|
{% block service_page_title %}
|
|
{{ template.name }}
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
|
|
<h1 class="heading-large">{{ template.name }}</h1>
|
|
|
|
{{ 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">Continue</a>
|
|
</div>
|
|
|
|
{% endblock %}
|