2016-09-28 15:05:54 +01:00
|
|
|
|
{% extends "withoutnav_template.html" %}
|
2019-04-29 11:44:05 +01:00
|
|
|
|
{% from "components/page-header.html" import page_header %}
|
2016-01-12 10:28:14 +00:00
|
|
|
|
{% from "components/page-footer.html" import page_footer %}
|
2018-09-19 12:39:36 +01:00
|
|
|
|
{% from "components/form.html" import form_wrapper %}
|
2023-08-30 11:07:38 -04:00
|
|
|
|
{% from "components/components/back-link/macro.njk" import usaBackLink %}
|
2016-01-12 10:28:14 +00:00
|
|
|
|
|
2017-02-23 15:34:13 +00:00
|
|
|
|
{% block per_page_title %}
|
|
|
|
|
|
Change your {{ thing }}
|
2016-01-12 10:28:14 +00:00
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
2021-07-30 18:23:12 +01:00
|
|
|
|
{% block backLink %}
|
2023-08-30 11:07:38 -04:00
|
|
|
|
{{ usaBackLink({ "href": url_for('.user_profile') }) }}
|
2021-07-30 18:23:12 +01:00
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
2016-09-28 15:05:54 +01:00
|
|
|
|
{% block maincolumn_content %}
|
2016-01-12 10:28:14 +00:00
|
|
|
|
|
2021-07-30 18:23:12 +01:00
|
|
|
|
{{ page_header('Change your {}'.format(thing)) }}
|
2016-01-12 10:28:14 +00:00
|
|
|
|
|
2023-08-23 16:18:25 -04:00
|
|
|
|
<div class="grid-row">
|
|
|
|
|
|
<div class="grid-col-9">
|
2023-06-06 15:28:24 -04:00
|
|
|
|
<p>
|
2016-08-22 12:52:05 +01:00
|
|
|
|
We’ve sent a security code to your new {{ thing }}.
|
2016-01-12 10:28:14 +00:00
|
|
|
|
</p>
|
2018-09-19 12:39:36 +01:00
|
|
|
|
{% call form_wrapper() %}
|
2020-08-03 18:12:52 +01:00
|
|
|
|
{{ form_field(param_extensions={
|
2023-08-28 14:40:33 -04:00
|
|
|
|
"classes": "usa-input width-15",
|
2020-08-03 18:12:52 +01:00
|
|
|
|
"attributes": {"data-module": "autofocus"}
|
|
|
|
|
|
}) }}
|
|
|
|
|
|
|
2019-04-29 11:44:05 +01:00
|
|
|
|
{{ page_footer('Confirm') }}
|
2018-09-19 12:39:36 +01:00
|
|
|
|
{% endcall %}
|
2016-01-12 10:28:14 +00:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|