mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-15 07:18:58 -04:00
31 lines
736 B
HTML
31 lines
736 B
HTML
{% extends "withnav_template.html" %}
|
|
{% from "components/textbox.html" import textbox %}
|
|
{% from "components/page-footer.html" import page_footer %}
|
|
|
|
{% block page_title %}
|
|
GOV.UK Notify | Service settings
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
<h1 class="heading-xlarge">Change your service name</h1>
|
|
|
|
<div class="grid-row">
|
|
<div class="column-three-quarters">
|
|
|
|
<p>
|
|
Your service name ({{ service.name }}) is included in every sent notification
|
|
</p>
|
|
|
|
<form method="post">
|
|
{{ textbox('new_name', 'New name', value=service.name) }}
|
|
{{ page_footer(
|
|
'Save',
|
|
back_link=url_for('.service_settings')
|
|
) }}
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|