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-01-07 20:11:22 +00:00
|
|
|
|
{% from "components/page-footer.html" import page_footer %}
|
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 %}
|
|
|
|
|
|
|
|
|
|
|
|
<div class="grid-row">
|
2016-01-07 16:24:43 +00:00
|
|
|
|
<div class="column-three-quarters">
|
2016-01-07 12:29:56 +00:00
|
|
|
|
|
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>
|
|
|
|
|
|
You’ll need to:
|
|
|
|
|
|
</p>
|
|
|
|
|
|
<ul class="list list-bullet">
|
|
|
|
|
|
<li>
|
|
|
|
|
|
agree to our <a href="{{ url_for('.terms') }}">terms of use</a>
|
|
|
|
|
|
</li>
|
|
|
|
|
|
<li>
|
|
|
|
|
|
agree to pay for what you use if you send more than 250,000 text messages per year
|
|
|
|
|
|
(<a href="{{ url_for("main.pricing") }}">see our pricing</a>)
|
|
|
|
|
|
</li>
|
|
|
|
|
|
</ul>
|
2016-03-21 16:17:20 +00:00
|
|
|
|
|
2016-04-26 13:31:57 +01:00
|
|
|
|
<form method="post">
|
2016-03-21 16:17:20 +00:00
|
|
|
|
|
2016-04-26 13:31:57 +01:00
|
|
|
|
{{ textbox(
|
|
|
|
|
|
form.usage,
|
2016-08-22 10:19:25 +01:00
|
|
|
|
label='Estimate how many emails and text messages you’ll send each month',
|
2016-04-26 13:31:57 +01:00
|
|
|
|
hint='If your estimate is likely to change, tell us how ',
|
|
|
|
|
|
width='1-1',
|
|
|
|
|
|
rows=5
|
|
|
|
|
|
) }}
|
|
|
|
|
|
|
|
|
|
|
|
<p>
|
|
|
|
|
|
We will:
|
|
|
|
|
|
</p>
|
|
|
|
|
|
<ul class="list list-bullet">
|
|
|
|
|
|
<li>
|
|
|
|
|
|
check that your templates 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>
|
|
|
|
|
|
<li>
|
|
|
|
|
|
check that you have more than one
|
|
|
|
|
|
<a href="{{ url_for('main.manage_users', service_id=current_service.id) }}">team member</a>
|
|
|
|
|
|
in case you go on holiday
|
|
|
|
|
|
</li>
|
|
|
|
|
|
<li>
|
|
|
|
|
|
make your service live or get back to you within one working day
|
|
|
|
|
|
</li>
|
|
|
|
|
|
</ul>
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|