2016-01-07 12:29:56 +00:00
|
|
|
|
{% extends "withnav_template.html" %}
|
2016-04-26 13:31:57 +01:00
|
|
|
|
{% from "components/textbox.html" import textbox %}
|
2016-10-31 15:05:22 +00:00
|
|
|
|
{% 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
|
|
|
|
|
|
|
|
|
|
{% block page_title %}
|
2016-02-08 09:23:51 +00:00
|
|
|
|
Request to go live – GOV.UK Notify
|
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-03-21 16:17:20 +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 you’ve:
|
2016-04-26 13:31:57 +01:00
|
|
|
|
</p>
|
2016-10-31 15:27:16 +00:00
|
|
|
|
<ul class="list list-bullet bottom-gutter">
|
2016-10-24 14:36:37 +01:00
|
|
|
|
<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
|
2016-10-24 14:36:37 +01:00
|
|
|
|
<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
|
2016-10-24 14:36:37 +01:00
|
|
|
|
<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-03-21 16:17:20 +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>
|
2016-11-02 15:46:22 +00:00
|
|
|
|
{{ radios(form.mou, option_hints={
|
|
|
|
|
|
'no': 'We’ll send you a copy',
|
|
|
|
|
|
'don’t know': 'We’ll check for you',
|
|
|
|
|
|
}) }}
|
2016-11-01 11:37:10 +00:00
|
|
|
|
</div>
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
|
{{ radios(form.channel) }}
|
|
|
|
|
|
{{ 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>
|
2016-10-24 14:36:37 +01:00
|
|
|
|
Once you’ve completed the tasks needed to set up, we’ll make your service live. We’ll 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 you’re agreeing to our <a href="{{ url_for('.terms') }}">terms of use</a>.
|
2016-10-24 14:36:37 +01:00
|
|
|
|
</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 %}
|