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

67 lines
2.0 KiB
HTML
Raw Normal View History

{% extends "withnav_template.html" %}
{% from "components/textbox.html" import textbox %}
{% from "components/page-footer.html" import page_footer %}
{% block page_title %}
Request to go live GOV.UK Notify
{% endblock %}
{% block maincolumn_content %}
<div class="grid-row">
<div class="column-three-quarters">
<h1 class="heading-large">Request to go live</h1>
2016-03-21 16:17:20 +00:00
<p>
Youll 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
<form method="post">
2016-03-21 16:17:20 +00:00
{{ textbox(
form.usage,
label='Estimate how many emails and text messages youll send each month',
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>
{{ page_footer('Request to go live') }}
</form>
</div>
</div>
{% endblock %}