mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-05 02:42:26 -05:00
30 lines
698 B
HTML
30 lines
698 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-large">Change your {{ thing }}</h1>
|
||
|
||
<div class="grid-row">
|
||
<div class="column-three-quarters">
|
||
<p>
|
||
We’ve sent a code to your new {{ thing }}.
|
||
</p>
|
||
<form method="post">
|
||
{{ textbox(form_field) }}
|
||
{{ page_footer(
|
||
'Confirm',
|
||
destructive=destructive,
|
||
back_link=url_for('.user_profile')
|
||
) }}
|
||
</form>
|
||
</div>
|
||
</div>
|
||
|
||
{% endblock %}
|