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 %}
|
|
|
|
|
|
|
2016-02-02 14:05:45 +00:00
|
|
|
|
<h1 class="heading-large">{{ heading }}</h1>
|
2016-01-07 16:24:43 +00:00
|
|
|
|
|
|
|
|
|
|
<div class="grid-row">
|
|
|
|
|
|
<div class="column-three-quarters">
|
|
|
|
|
|
|
2016-02-01 13:53:55 +00:00
|
|
|
|
<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(
|
2016-01-08 17:17:34 +00:00
|
|
|
|
'Confirm',
|
2016-01-07 16:24:43 +00:00
|
|
|
|
destructive=destructive,
|
2016-04-04 16:53:52 +01:00
|
|
|
|
back_link=url_for('.service_settings', service_id=current_service.id)
|
2016-01-07 16:24:43 +00:00
|
|
|
|
) }}
|
|
|
|
|
|
</form>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|