Files
notifications-admin/app/templates/views/service-settings/name.html
Chris Hill-Scott 3989d1b576 Add pages for ‘service settings’ flow
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.
2016-01-08 14:56:14 +00:00

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 %}