Files
notifications-admin/app/templates/views/service-settings/confirm.html
T

28 lines
660 B
HTML
Raw Normal View History

2016-01-07 16:24:43 +00:00
{% extends "withnav_template.html" %}
{% from "components/textbox.html" import textbox %}
2016-01-07 20:11:22 +00:00
{% from "components/page-footer.html" import page_footer %}
2016-01-07 16:24:43 +00:00
{% block page_title %}
2016-02-08 09:23:51 +00:00
{{ heading }} GOV.UK Notify
2016-01-07 16:24:43 +00:00
{% endblock %}
{% block maincolumn_content %}
<h1 class="heading-large">{{ heading }}</h1>
2016-01-07 16:24:43 +00:00
<div class="grid-row">
<div class="column-three-quarters">
<form autocomplete="off" method="post">
2016-01-11 13:15:10 +00:00
{{ textbox(form.password) }}
2016-01-07 20:11:22 +00:00
{{ page_footer(
'Confirm',
2016-01-07 16:24:43 +00:00
destructive=destructive,
back_link=url_for('.service_settings', service_id=current_service.id)
2016-01-07 16:24:43 +00:00
) }}
</form>
</div>
</div>
{% endblock %}