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-10-24 14:36:37 +01:00
{% call banner_wrapper(type='warning') %}
2016-10-24 15:38:00 +01:00
< h2 class = "heading-medium" > You must accept the GOV.UK Notify data sharing and financial agreement (Memorandum of Understanding) before we can process data for you.< / h2 >
2016-10-24 14:36:37 +01:00
< p >
< a href = "{{ url_for('main.feedback') }}" > Contact the Notify team< / a > to get a copy of the agreement or to find out if your organisation has already accepted it.
< / p >
{% endcall %}
2016-10-24 15:35:51 +01: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 >
< ul class = "list list-bullet" >
2016-10-24 14:36:37 +01:00
< li > accepted our data sharing and financial agreement< / li >
< 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-10-31 15:05:22 +00:00
{{ radios(form.channel) }}
2016-10-24 15:38:00 +01:00
{{ textbox(form.start_date, width='1-1') }}
{{ textbox(form.start_volume, width='1-1') }}
{{ textbox(form.peak_volume, width='1-1') }}
2016-10-31 15:05:22 +00:00
{{ radios(form.upload_or_api) }}
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-10-24 14:36:37 +01:00
By requesting to go live you are agreeing to our terms of use.
< / 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 %}