mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-06 18:58:25 -04:00
A lot of users aren’t reading or paying attention to the checklist on the request to go live page. We think that we can get more people to read it by putting it on its own page, where users won’t jump straight to filling in the form. This will, later on, let us make this page smarter by automatically detecting if they’ve done the necessary things.
40 lines
1.4 KiB
HTML
40 lines
1.4 KiB
HTML
{% extends "withnav_template.html" %}
|
||
{% from "components/checkbox.html" import checkbox_group %}
|
||
{% from "components/textbox.html" import textbox %}
|
||
{% from "components/radios.html" import radios %}
|
||
{% from "components/page-footer.html" import page_footer %}
|
||
{% from "components/banner.html" import banner_wrapper %}
|
||
|
||
{% block service_page_title %}
|
||
Request to go live
|
||
{% endblock %}
|
||
|
||
{% block maincolumn_content %}
|
||
|
||
<h1 class="heading-large">Request to go live</h1>
|
||
|
||
<p>
|
||
Before you request to go live, make sure you’ve:
|
||
</p>
|
||
<ul class="list list-bullet bottom-gutter">
|
||
<li>
|
||
read our <a href="{{ url_for('.terms') }}">terms of use</a>
|
||
</li>
|
||
<li>
|
||
added <a href="{{ url_for('main.manage_users', service_id=current_service.id) }}">team members</a> to your account
|
||
</li>
|
||
<li>
|
||
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
|
||
</li>
|
||
<li>
|
||
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>
|
||
</li>
|
||
</ul>
|
||
<p>
|
||
<a href="{{ url_for('main.submit_request_to_go_live', service_id=current_service.id) }}" class="button">Next</a>
|
||
</p>
|
||
|
||
{% endblock %}
|