Files
notifications-admin/app/templates/views/service-settings/request-to-go-live.html
Chris Hill-Scott 5d9b2c078a Ask specifically for numbers of emails/texts
We want to know this, so hopefully this will prompt users to tell it to
us.
2016-04-26 14:45:50 +01:00

67 lines
2.0 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{% 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>
<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>
<form method="post">
{{ textbox(
form.usage,
label='Estimate how many emails and/or 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 %}