mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-05 10:53:28 -05:00
28 lines
660 B
HTML
28 lines
660 B
HTML
{% extends "withnav_template.html" %}
|
||
{% from "components/textbox.html" import textbox %}
|
||
{% from "components/page-footer.html" import page_footer %}
|
||
|
||
{% block page_title %}
|
||
{{ heading }} – GOV.UK Notify
|
||
{% endblock %}
|
||
|
||
{% block maincolumn_content %}
|
||
|
||
<h1 class="heading-large">{{ heading }}</h1>
|
||
|
||
<div class="grid-row">
|
||
<div class="column-three-quarters">
|
||
|
||
<form autocomplete="off" method="post">
|
||
{{ textbox(form.password) }}
|
||
{{ page_footer(
|
||
'Confirm',
|
||
destructive=destructive,
|
||
back_link=url_for('.service_settings', service_id=current_service.id)
|
||
) }}
|
||
</form>
|
||
</div>
|
||
</div>
|
||
|
||
{% endblock %}
|