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

61 lines
2.5 KiB
HTML
Raw Normal View History

{% extends "withnav_template.html" %}
{% from "components/textbox.html" import textbox %}
{% from "components/radios.html" import radios %}
{% from "components/page-footer.html" import page_footer %}
2016-10-24 15:35:51 +01:00
{% from "components/banner.html" import banner_wrapper %}
{% block page_title %}
Request to go live GOV.UK Notify
{% endblock %}
{% block maincolumn_content %}
<h1 class="heading-large">Request to go live</h1>
2016-03-21 16:17:20 +00:00
{% call banner_wrapper(type='warning') %}
<h2 class="heading-medium">You must accept the GOV.UK&nbsp;Notify data sharing and financial agreement (Memorandum of Understanding) before we can process data for you.</h2>
<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
<p>
Before you request to go live, make sure youve:
</p>
<ul class="list list-bullet">
<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>
<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>
<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>
</ul>
2016-03-21 16:17:20 +00:00
<form method="post">
{{ radios(form.channel) }}
{{ textbox(form.start_date, width='1-1') }}
{{ textbox(form.start_volume, width='1-1') }}
{{ textbox(form.peak_volume, width='1-1') }}
{{ radios(form.upload_or_api) }}
<p>
Once youve completed the tasks needed to set up, well make your service live. Well do this within one working day.
</p>
2016-10-24 15:35:51 +01:00
<p>
By requesting to go live you are agreeing to our terms of use.
</p>
2016-10-24 15:35:51 +01:00
{{ page_footer('Request to go live') }}
</form>
{% endblock %}