Files
notifications-admin/app/templates/views/service-settings/request-to-go-live.html
Chris Hill-Scott bdf5bd51b6 Remove 2/3rds and 3/4 columns
These columns make the line length too short, and the text less
readable.
2016-09-07 15:16:52 +01:00

62 lines
1.9 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 %}
<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 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>
{% endblock %}