2018-02-20 12:15:35 +00:00
|
|
|
|
{% extends "withnav_template.html" %}
|
2018-09-19 12:39:36 +01:00
|
|
|
|
{% from "components/form.html" import form_wrapper %}
|
2019-02-15 11:03:19 +00:00
|
|
|
|
{% from "components/page-footer.html" import page_footer %}
|
|
|
|
|
|
{% from "components/radios.html" import radios %}
|
|
|
|
|
|
{% from "components/textbox.html" import textbox %}
|
2018-02-20 12:15:35 +00:00
|
|
|
|
|
|
|
|
|
|
{% block service_page_title %}
|
2019-02-15 11:03:19 +00:00
|
|
|
|
Estimate usage
|
2018-02-20 12:15:35 +00:00
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
|
|
{% block maincolumn_content %}
|
2019-02-15 11:03:19 +00:00
|
|
|
|
<div class="grid-row">
|
|
|
|
|
|
<div class="column-whole">
|
2018-09-19 12:39:36 +01:00
|
|
|
|
{% call form_wrapper() %}
|
2019-02-15 11:03:19 +00:00
|
|
|
|
<h1 class="heading-large">Estimate usage</h1>
|
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>
|
2019-02-15 11:03:19 +00:00
|
|
|
|
{{ radios(form.consent_to_research, hint='You don’t have to take part and you can unsubscribe at any time') }}
|
|
|
|
|
|
{{ page_footer('Continue') }}
|
2018-09-19 12:39:36 +01:00
|
|
|
|
{% endcall %}
|
2019-02-15 11:03:19 +00:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2018-02-20 12:15:35 +00:00
|
|
|
|
{% endblock %}
|