Files
notifications-admin/app/templates/views/user-profile/confirm.html

30 lines
698 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{% 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>
Weve 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 %}