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 %}
|
2018-09-19 12:39:36 +01:00
|
|
|
|
{% from "components/form.html" import form_wrapper %}
|
2018-02-20 12:15:35 +00:00
|
|
|
|
|
|
|
|
|
|
{% block service_page_title %}
|
2018-08-29 10:19:58 +01:00
|
|
|
|
Request to go live
|
2018-02-20 12:15:35 +00:00
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
|
|
|
2018-08-29 10:19:58 +01:00
|
|
|
|
<h1 class="heading-large">Request to go live</h1>
|
|
|
|
|
|
|
2018-09-19 12:39:36 +01:00
|
|
|
|
{% call form_wrapper() %}
|
2018-02-20 12:15:35 +00:00
|
|
|
|
<div class="form-group">
|
2018-08-30 11:00:39 +01:00
|
|
|
|
{{ textbox(form.volume_email, width='1-2', hint='For example, 1,000,000') }}
|
|
|
|
|
|
{{ textbox(form.volume_sms, width='1-2', hint='For example, 500,000') }}
|
|
|
|
|
|
{{ textbox(form.volume_letter, width='1-2', hint='For example, 5,000') }}
|
2018-02-20 12:15:35 +00:00
|
|
|
|
</div>
|
2018-08-30 11:51:34 +01:00
|
|
|
|
{{ radios(form.research_consent, hint='You don’t have to take part and you can unsubscribe at any time') }}
|
|
|
|
|
|
<p>
|
|
|
|
|
|
When we receive your request we’ll get back to you within one working day.
|
|
|
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
|
|
|
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') }}
|
2018-09-19 12:39:36 +01:00
|
|
|
|
{% endcall %}
|
2018-02-20 12:15:35 +00:00
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|