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

53 lines
2.1 KiB
HTML
Raw Normal View History

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 %}
{% 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-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">
{{ radios(form.mou) }}
{{ 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) }}
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 %}