2015-11-25 16:21:28 +00:00
|
|
|
{% extends "admin_template.html" %}
|
|
|
|
|
|
|
|
|
|
{% block page_title %}
|
2015-12-01 09:50:20 +00:00
|
|
|
GOV.UK Notify | Set up service
|
2015-11-25 16:21:28 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
|
|
|
|
|
<div class="grid-row">
|
|
|
|
|
<div class="column-two-thirds">
|
|
|
|
|
<h1 class="heading-xlarge">Set up notifications for your service</h1>
|
2015-12-04 14:46:01 +00:00
|
|
|
|
|
|
|
|
<p>Users will see your service name:</p>
|
2015-12-07 11:44:32 +00:00
|
|
|
<ul class="list-bullet">
|
2015-12-04 14:46:01 +00:00
|
|
|
<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>
|
2015-11-25 16:21:28 +00:00
|
|
|
|
2015-12-15 09:37:54 +00:00
|
|
|
<form autocomplete="off" action="" method="post">
|
|
|
|
|
{{ form.hidden_tag() }}
|
2016-01-04 15:31:50 +00:00
|
|
|
{{ render_field(form.service_name, class='form-control-2-3') }}
|
2015-11-25 16:21:28 +00:00
|
|
|
|
2015-12-15 09:37:54 +00:00
|
|
|
<p>
|
|
|
|
|
<button class="button" href="dashboard" role="button">Continue</button>
|
|
|
|
|
</p>
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|
2015-11-25 16:21:28 +00:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
2015-12-01 09:50:20 +00:00
|
|
|
{% endblock %}
|