mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-04 23:48:25 -04:00
We have tickets from people asking how long the process takes. I suspect that this is because they’re not getting to the bottom of the form before they’re ready to go live.
48 lines
1.7 KiB
HTML
48 lines
1.7 KiB
HTML
{% extends "withnav_template.html" %}
|
||
{% from "components/checkbox.html" import checkbox_group %}
|
||
{% 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 service_page_title %}
|
||
Request to go live
|
||
{% endblock %}
|
||
|
||
{% block maincolumn_content %}
|
||
|
||
<h1 class="heading-large">Request to go live</h1>
|
||
|
||
<form method="post">
|
||
<div class="form-group">
|
||
<p>We need permission to process your data before we can make your service live.</p>
|
||
{{ radios(form.mou, option_hints={
|
||
'no': 'We’ll send you a copy',
|
||
'don’t know': 'We’ll check for you',
|
||
}) }}
|
||
</div>
|
||
{{ checkbox_group('What kind of messages will you be sending?', [
|
||
form.channel_email,
|
||
form.channel_sms,
|
||
form.channel_letter
|
||
]) }}
|
||
<div class="form-group">
|
||
{{ textbox(form.start_date, width='1-1') }}
|
||
{{ textbox(form.start_volume, width='1-1', hint='For example, ‘1,000 per month’.') }}
|
||
{{ textbox(form.peak_volume, width='1-1', hint='For example, ‘Messages will increase to 20,000 per month in January’.') }}
|
||
</div>
|
||
{{ checkbox_group('How are you going to send messages?', [
|
||
form.method_one_off,
|
||
form.method_upload,
|
||
form.method_api
|
||
]) }}
|
||
<p>
|
||
By requesting to go live you’re agreeing to our <a href="{{ url_for('.terms') }}">terms of use</a>.
|
||
</p>
|
||
|
||
{{ page_footer('Request to go live') }}
|
||
</form>
|
||
|
||
|
||
{% endblock %}
|