Files
notifications-admin/app/templates/views/service-settings/name.html
T

35 lines
928 B
HTML
Raw Normal View History

2016-01-07 12:29:56 +00:00
{% extends "withnav_template.html" %}
{% from "components/textbox.html" import textbox %}
2016-01-07 20:11:22 +00:00
{% from "components/page-footer.html" import page_footer %}
2016-01-07 12:29:56 +00:00
{% block page_title %}
2016-02-08 09:23:51 +00:00
Change your service name GOV.UK Notify
2016-01-07 12:29:56 +00:00
{% endblock %}
{% block maincolumn_content %}
<h1 class="heading-large">Change your service name</h1>
2016-01-07 16:24:43 +00:00
<div class="grid-row">
<div class="column-three-quarters">
2016-01-07 12:29:56 +00:00
2016-01-11 13:15:10 +00:00
<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>
2016-01-07 12:29:56 +00:00
2016-01-07 16:24:43 +00:00
<form method="post">
2016-01-18 16:01:04 +00:00
{{ textbox(form.name) }}
2016-01-07 20:11:22 +00:00
{{ page_footer(
2016-01-07 16:24:43 +00:00
'Save',
back_link=url_for('.service_settings', service_id=current_service.id),
2016-02-05 10:24:43 +00:00
back_link_text='Back to settings'
2016-01-07 16:24:43 +00:00
) }}
</form>
</div>
</div>
2016-01-07 12:29:56 +00:00
{% endblock %}