mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-03 13:18:57 -04:00
34 lines
916 B
HTML
34 lines
916 B
HTML
{% extends "admin_template.html" %}
|
|
|
|
{% block page_title %}
|
|
GOV.UK Notify | Set up service
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="grid-row">
|
|
<div class="column-two-thirds">
|
|
<h1 class="heading-xlarge">Set up notifications for your service</h1>
|
|
|
|
<p>Users will see your service name:</p>
|
|
<ul class="list-bullet">
|
|
<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" action="" method="post">
|
|
{{ form.hidden_tag() }}
|
|
<label class="form-label">Service name</label>
|
|
{{ form.service_name(class="form-control-2-3", autocomplete="off") }} <br>
|
|
<span class="font-xsmall">For example, 'Vehicle tax' or 'Carer's allowance'</span>
|
|
|
|
<p>
|
|
<button class="button" href="dashboard" role="button">Continue</button>
|
|
</p>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|