2015-11-30 14:17:54 +00:00
|
|
|
{% extends "admin_template.html" %}
|
2015-12-10 15:57:32 +00:00
|
|
|
{% from "components/sms-message.html" import sms_message %}
|
2015-11-30 14:17:54 +00:00
|
|
|
|
|
|
|
|
{% block page_title %}
|
2015-12-10 15:57:32 +00:00
|
|
|
GOV.UK Notify | Send text messages
|
2015-11-30 14:17:54 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
|
|
|
|
|
<div class="grid-row">
|
|
|
|
|
<div class="column-two-thirds">
|
2015-12-10 16:26:53 +00:00
|
|
|
|
2015-11-30 14:17:54 +00:00
|
|
|
<h1 class="heading-xlarge">Send text messages</h1>
|
|
|
|
|
|
2015-12-10 16:26:53 +00:00
|
|
|
{{ sms_message("
|
|
|
|
|
Vehicle tax: Your vehicle tax for ((registration number)) expires on
|
|
|
|
|
((date)). Tax your vehicle at www.gov.uk/vehicle-tax
|
|
|
|
|
") }}
|
|
|
|
|
|
2015-11-30 14:17:54 +00:00
|
|
|
<p>
|
2015-12-10 16:26:53 +00:00
|
|
|
<a class="button" href="check-sms" role="button">Continue</a>
|
2015-11-30 14:17:54 +00:00
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|