Files
notifications-admin/app/templates/views/service-settings/request-to-go-live.html
T

66 lines
2.7 KiB
HTML
Raw Normal View History

2016-01-07 12:29:56 +00:00
{% extends "withnav_template.html" %}
2017-09-27 10:46:52 +01:00
{% from "components/checkbox.html" import checkbox_group %}
2016-04-26 13:31:57 +01:00
{% from "components/textbox.html" import textbox %}
{% from "components/radios.html" import radios %}
2016-01-07 20:11:22 +00:00
{% from "components/page-footer.html" import page_footer %}
2016-10-24 15:35:51 +01:00
{% from "components/banner.html" import banner_wrapper %}
2016-01-07 12:29:56 +00:00
2017-02-13 10:45:15 +00:00
{% block service_page_title %}
Request to go live
2016-01-07 12:29:56 +00:00
{% endblock %}
{% block maincolumn_content %}
2016-04-26 13:31:57 +01:00
<h1 class="heading-large">Request to go live</h1>
2016-01-07 12:29:56 +00:00
2016-04-26 13:31:57 +01:00
<p>
2016-10-28 16:16:26 +01:00
Before you request to go live, make sure youve:
2016-04-26 13:31:57 +01:00
</p>
2016-10-31 15:27:16 +00:00
<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>
2016-04-26 13:31:57 +01:00
<li>
2016-10-24 15:35:51 +01:00
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>
2016-04-26 13:31:57 +01:00
<li>
2016-10-24 15:35:51 +01:00
added the templates you want to start with, making sure they follow our
<a href="https://designpatterns.hackpad.com/Notifications-5vuitmNqIjZ" rel="external">design patterns</a>,
<a href="https://www.gov.uk/topic/government-digital-guidance/content-publishing" rel="external">style guide</a>
and
<a href="https://docs.google.com/document/d/15-OjaEqDBy31uDU7nLZCpYIQOnzSCJR63-cp3cQI9G8" rel="external">information security guidelines</a>
</li>
2016-04-26 13:31:57 +01:00
</ul>
2016-01-07 16:24:43 +00:00
2016-04-26 13:31:57 +01:00
<form method="post">
2016-11-01 11:37:10 +00:00
<div class="form-group">
<p>We need permission to process your data before we can make your service live.</p>
{{ radios(form.mou, option_hints={
'no': 'Well send you a copy',
'dont know': 'Well check for you',
}) }}
2016-11-01 11:37:10 +00:00
</div>
2017-09-27 10:46:52 +01:00
{{ checkbox_group('What kind of messages will you be sending?', [
form.channel_email,
form.channel_sms,
form.channel_letter
]) }}
2016-11-01 11:37:10 +00:00
<div class="form-group">
{{ textbox(form.start_date, width='1-1') }}
{{ textbox(form.start_volume, width='1-1', hint='For example, 1000 a month.') }}
{{ textbox(form.peak_volume, width='1-1', hint='For example, Messages will increase to 20,000 a month in January.') }}
{{ radios(form.upload_or_api) }}
</div>
2016-04-26 13:31:57 +01:00
<p>
Once youve completed the tasks needed to set up, well make your service live. Well do this within one working day.
2016-04-26 13:31:57 +01:00
</p>
2016-10-24 15:35:51 +01:00
<p>
2016-11-01 11:36:53 +00:00
By requesting to go live youre agreeing to our <a href="{{ url_for('.terms') }}">terms of use</a>.
</p>
2016-10-24 15:35:51 +01:00
2016-08-22 10:19:25 +01:00
{{ page_footer('Request to go live') }}
2016-04-26 13:31:57 +01:00
</form>
2016-01-07 12:29:56 +00:00
{% endblock %}