mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-05 21:38:24 -04:00
This commit: - moves things around a bit on the request to go live page - sticks a textbox in there So when someone click the big green button, we will get a support ticket that looks something like: ``` From Test User <test@user.gov.uk> on behalf of Test Service (6ce466d0-fd6a-11e5-82f5-e0accb9d11a6) --- We’ll send about 1000 text messages in the first month, and then 10,000 text messages per month after that. Usage of our service is about 50% higher in March, at the end of the tax year. ```
67 lines
2.0 KiB
HTML
67 lines
2.0 KiB
HTML
{% 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>
|
||
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>
|
||
|
||
<form method="post">
|
||
|
||
{{ textbox(
|
||
form.usage,
|
||
label='Estimate how many notifications you’ll 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 %}
|