2016-09-28 15:05:54 +01:00
|
|
|
{% extends "withoutnav_template.html" %}
|
2016-01-12 11:25:46 +00:00
|
|
|
{% from "components/textbox.html" import textbox %}
|
|
|
|
|
{% from "components/page-footer.html" import page_footer %}
|
2018-09-19 12:39:36 +01:00
|
|
|
{% from "components/form.html" import form_wrapper %}
|
2016-01-12 11:25:46 +00:00
|
|
|
|
2017-02-23 15:34:13 +00:00
|
|
|
{% block per_page_title %}
|
|
|
|
|
Change your {{ thing }}
|
2016-01-12 11:25:46 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
2016-09-28 15:05:54 +01:00
|
|
|
{% block maincolumn_content %}
|
2016-01-12 11:25:46 +00:00
|
|
|
|
2016-02-02 14:05:45 +00:00
|
|
|
<h1 class="heading-large">Change your {{ thing }}</h1>
|
2016-01-12 11:25:46 +00:00
|
|
|
|
|
|
|
|
<div class="grid-row">
|
|
|
|
|
<div class="column-three-quarters">
|
|
|
|
|
|
2018-09-19 12:39:36 +01:00
|
|
|
{% call form_wrapper(autocomplete=True) %}
|
2016-01-12 11:25:46 +00:00
|
|
|
{{ textbox(form.password) }}
|
|
|
|
|
{{ page_footer(
|
|
|
|
|
'Confirm',
|
|
|
|
|
back_link=back_link
|
|
|
|
|
) }}
|
2018-09-19 12:39:36 +01:00
|
|
|
{% endcall %}
|
2016-01-12 11:25:46 +00:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|