mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-07 16:28:25 -04:00
Adds the pages and wires them together, so that it’s possible to click through them. The wording is not quite English, but attempts to be an rough description of what the consequences are for each of the four actions.
23 lines
549 B
HTML
23 lines
549 B
HTML
{% extends "withnav_template.html" %}
|
|
{% from "components/textbox.html" import textbox %}
|
|
{% from "components/submit-form.html" import submit_form %}
|
|
|
|
{% block page_title %}
|
|
GOV.UK Notify | Service settings
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
<h1 class="heading-xlarge">Rename your service</h1>
|
|
|
|
<form method="post">
|
|
{{ textbox('new_name', 'New name', value=service.name) }}
|
|
{{ submit_form('Save') }}
|
|
</form>
|
|
|
|
<p><a href="{{ url_for('.service_settings') }}">Back to service settings</a></p>
|
|
|
|
|
|
|
|
{% endblock %}
|