mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-02 17:48:50 -04:00
30 lines
706 B
HTML
30 lines
706 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 {{ 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('.service_settings')
|
|||
|
|
) }}
|
|||
|
|
</form>
|
|||
|
|
</div>
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
{% endblock %}
|