2015-12-14 16:53:07 +00:00
|
|
|
|
{% extends "withnav_template.html" %}
|
2015-12-10 15:57:32 +00:00
|
|
|
|
{% from "components/sms-message.html" import sms_message %}
|
2016-01-07 20:11:22 +00:00
|
|
|
|
{% from "components/page-footer.html" import page_footer %}
|
2016-01-12 10:43:23 +00:00
|
|
|
|
{% from "components/textbox.html" import textbox %}
|
2015-11-30 14:17:54 +00:00
|
|
|
|
|
|
|
|
|
|
{% block page_title %}
|
2016-01-13 17:17:24 +00:00
|
|
|
|
GOV.UK Notify | Send text messages
|
2015-11-30 14:17:54 +00:00
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
2015-12-14 16:53:07 +00:00
|
|
|
|
{% block maincolumn_content %}
|
2016-01-13 17:17:24 +00:00
|
|
|
|
<form method="POST" enctype="multipart/form-data">
|
|
|
|
|
|
|
2016-01-20 10:36:41 +00:00
|
|
|
|
<div class="grid-row">
|
|
|
|
|
|
<div class="column-three-quarters">
|
|
|
|
|
|
|
|
|
|
|
|
<h1 class="heading-xlarge">Send text messages</h1>
|
|
|
|
|
|
|
|
|
|
|
|
<fieldset class='form-group'>
|
|
|
|
|
|
<legend class="heading-medium">1. Choose text message template</legend>
|
|
|
|
|
|
{% for template in message_templates %}
|
|
|
|
|
|
{{ sms_message(
|
|
|
|
|
|
template.body, name=template.name, input_name='template', input_index=loop.index
|
|
|
|
|
|
) }}
|
|
|
|
|
|
{% endfor %}
|
|
|
|
|
|
</fieldset>
|
|
|
|
|
|
|
|
|
|
|
|
<h2 class="heading-medium">2. Add recipients</h2>
|
|
|
|
|
|
|
|
|
|
|
|
<p>
|
|
|
|
|
|
Upload a CSV file to add your recipients’ details.
|
|
|
|
|
|
</p>
|
|
|
|
|
|
<p>
|
|
|
|
|
|
You can also <a href="#">download an example CSV</a>.
|
|
|
|
|
|
</p>
|
|
|
|
|
|
<p>
|
|
|
|
|
|
{{textbox(form.file)}}
|
|
|
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
|
|
{{ page_footer("Continue") }}
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2016-01-13 17:17:24 +00:00
|
|
|
|
|
|
|
|
|
|
</form>
|
2015-11-30 14:17:54 +00:00
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|