mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-05 10:53:28 -05:00
32 lines
718 B
HTML
32 lines
718 B
HTML
{% extends "admin_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 fullwidth_content %}
|
|
|
|
<h1 class="heading-xlarge">Change your {{ thing }}</h1>
|
|
|
|
<div class="grid-row">
|
|
{% if preamble %}
|
|
<p>
|
|
{{ preamble }}
|
|
</p>
|
|
{% endif %}
|
|
<div class="column-three-quarters">
|
|
<form method="post">
|
|
{{ textbox(form_field) }}
|
|
{{ page_footer(
|
|
'Save',
|
|
back_link=url_for('.user_profile'),
|
|
back_link_text="Back to your profile"
|
|
) }}
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|