2016-02-01 12:15:38 +00:00
|
|
|
|
{% extends "withoutnav_template.html" %}
|
2016-01-11 13:15:10 +00:00
|
|
|
|
{% from "components/textbox.html" import textbox %}
|
2016-01-18 10:47:53 +00:00
|
|
|
|
{% from "components/page-footer.html" import page_footer %}
|
2015-11-25 16:21:28 +00:00
|
|
|
|
|
|
|
|
|
|
{% block page_title %}
|
2016-02-08 09:23:51 +00:00
|
|
|
|
{{heading}} – GOV.UK Notify
|
2015-11-25 16:21:28 +00:00
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
2016-02-01 12:15:38 +00:00
|
|
|
|
{% block maincolumn_content %}
|
2015-11-25 16:21:28 +00:00
|
|
|
|
|
|
|
|
|
|
<div class="grid-row">
|
2016-01-18 10:47:53 +00:00
|
|
|
|
<div class="column-two-thirds">
|
|
|
|
|
|
|
2016-02-02 14:05:45 +00:00
|
|
|
|
<h1 class="heading-large">
|
2016-01-18 10:47:53 +00:00
|
|
|
|
{{ heading }}
|
|
|
|
|
|
</h1>
|
|
|
|
|
|
|
|
|
|
|
|
<p>
|
2016-02-04 12:20:24 +00:00
|
|
|
|
Users will see your service name when they receive messages through GOV.UK
|
|
|
|
|
|
Notify:
|
2016-01-18 10:47:53 +00:00
|
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
|
|
<ul class="list-bullet bottom-gutter">
|
|
|
|
|
|
<li>
|
|
|
|
|
|
at the start of every text message, eg ‘Vehicle tax: we received your
|
|
|
|
|
|
payment, thank you’
|
|
|
|
|
|
</li>
|
|
|
|
|
|
<li>
|
|
|
|
|
|
as your email sender name
|
|
|
|
|
|
</li>
|
|
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
|
|
|
|
<form autocomplete="off" method="post">
|
2016-02-04 12:20:24 +00:00
|
|
|
|
{{ textbox(form.name, hint="You can change this later") }}
|
2016-02-01 16:40:04 +00:00
|
|
|
|
{{ page_footer('Continue') }}
|
2016-01-18 10:47:53 +00:00
|
|
|
|
</form>
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
2015-11-25 16:21:28 +00:00
|
|
|
|
</div>
|
|
|
|
|
|
|
2015-12-01 09:50:20 +00:00
|
|
|
|
{% endblock %}
|