mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-04 07:18:26 -04:00
If we want someone to read something (ie that they need to have the MOU signed), then the best way is to make them interact with it. And if someone doesn’t have the MOU in place, then we need to know to send them a copy. The best way of them telling us this is in this form, rather than sending them to the generic contact form and have them compose a message saying ‘please send me the MOU thanks’, which we haven’t seen anyone actually do.
53 lines
2.1 KiB
HTML
53 lines
2.1 KiB
HTML
{% extends "withnav_template.html" %}
|
||
{% from "components/textbox.html" import textbox %}
|
||
{% from "components/radios.html" import radios %}
|
||
{% from "components/page-footer.html" import page_footer %}
|
||
{% from "components/banner.html" import banner_wrapper %}
|
||
|
||
{% block page_title %}
|
||
Request to go live – GOV.UK Notify
|
||
{% endblock %}
|
||
|
||
{% block maincolumn_content %}
|
||
|
||
<h1 class="heading-large">Request to go live</h1>
|
||
|
||
<p>
|
||
Before you request to go live, make sure you’ve:
|
||
</p>
|
||
<ul class="list list-bullet bottom-gutter">
|
||
<li>read our <a href="{{ url_for('.terms') }}">terms of use</a></li>
|
||
<li>added <a href="{{ url_for('main.manage_users', service_id=current_service.id) }}">team members</a> to your account</li>
|
||
<li>
|
||
specified your reply to email address or text message sender in your
|
||
<a href="{{ url_for('main.service_settings', service_id=current_service.id) }}">settings</a> page</li>
|
||
<li>
|
||
added the templates you want to start with, making sure they 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>
|
||
</ul>
|
||
|
||
<form method="post">
|
||
{{ radios(form.mou) }}
|
||
{{ radios(form.channel) }}
|
||
{{ textbox(form.start_date, width='1-1') }}
|
||
{{ textbox(form.start_volume, width='1-1') }}
|
||
{{ textbox(form.peak_volume, width='1-1') }}
|
||
{{ radios(form.upload_or_api) }}
|
||
|
||
<p>
|
||
Once you’ve completed the tasks needed to set up, we’ll make your service live. We’ll do this within one working day.
|
||
</p>
|
||
<p>
|
||
By requesting to go live you are agreeing to our terms of use.
|
||
</p>
|
||
|
||
{{ page_footer('Request to go live') }}
|
||
</form>
|
||
|
||
|
||
{% endblock %}
|