2018-02-20 12:15:35 +00:00
|
|
|
|
{% 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 %}
|
2018-03-13 11:39:40 +00:00
|
|
|
|
How do you plan to use Notify?
|
2018-02-20 12:15:35 +00:00
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
|
|
|
2018-03-13 11:39:40 +00:00
|
|
|
|
<h1 class="heading-large">How do you plan to use Notify?</h1>
|
2018-02-20 12:15:35 +00:00
|
|
|
|
|
2018-03-13 11:35:45 +00:00
|
|
|
|
<form method="post" class="top-gutter">
|
2018-02-20 12:15:35 +00:00
|
|
|
|
{{ 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
|
|
|
|
|
|
]) }}
|
2018-03-13 11:35:45 +00:00
|
|
|
|
<p class="bottom-gutter">
|
2018-02-20 12:15:35 +00:00
|
|
|
|
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 %}
|