Add grid column to go live checklist page

To keep the line length of the text nice and comfortable.
This commit is contained in:
Chris Hill-Scott
2018-02-20 12:18:14 +00:00
parent 8a857d2618
commit 4a6d0d08d4

View File

@@ -10,33 +10,34 @@
{% endblock %} {% endblock %}
{% block maincolumn_content %} {% block maincolumn_content %}
<div class="grid-row">
<h1 class="heading-large">Request to go live</h1> <div class="column-five-sixths">
<h1 class="heading-large">Request to go live</h1>
<p> <p>
Before you request to go live, make sure youve: Before you request to go live, make sure youve:
</p> </p>
<ul class="list list-bullet bottom-gutter"> <ul class="list list-bullet bottom-gutter">
<li> <li>
read our <a href="{{ url_for('.terms') }}">terms of use</a> read our <a href="{{ url_for('.terms') }}">terms of use</a>
</li> </li>
<li> <li>
added <a href="{{ url_for('main.manage_users', service_id=current_service.id) }}">team members</a> to your account added <a href="{{ url_for('main.manage_users', service_id=current_service.id) }}">team members</a> to your account
</li> </li>
<li> <li>
specified your reply to email address or text message sender in your specified your reply to email address or text message sender in your
<a href="{{ url_for('main.service_settings', service_id=current_service.id) }}">settings</a> page <a href="{{ url_for('main.service_settings', service_id=current_service.id) }}">settings</a> page
</li> </li>
<li> <li>
added the templates you want to start with, making sure they follow the GOV.UK Service Manual standards for added the templates you want to start with, making sure they follow the GOV.UK Service Manual standards for
<a href="https://www.gov.uk/service-manual/design/sending-emails-and-text-messages">writing text messages and emails</a> <a href="https://www.gov.uk/service-manual/design/sending-emails-and-text-messages">writing text messages and emails</a>
</li> </li>
</ul> </ul>
<p> <p>
Once youve made the request, well put your service live within one working day. Once youve made the request, well put your service live within one working day.
</p> </p>
<p> <p>
<a href="{{ url_for('main.submit_request_to_go_live', service_id=current_service.id) }}" class="button">Next</a> <a href="{{ url_for('main.submit_request_to_go_live', service_id=current_service.id) }}" class="button">Next</a>
</p> </p>
</div>
</div>
{% endblock %} {% endblock %}