mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-06-07 23:10:41 -04:00
This helps the browser autocomplete them with the right thing. Value based on https://www.w3.org/TR/WCAG21/#input-purposes
29 lines
725 B
HTML
29 lines
725 B
HTML
{% extends "withoutnav_template.html" %}
|
|
{% from "components/textbox.html" import textbox %}
|
|
{% from "components/page-header.html" import page_header %}
|
|
{% from "components/page-footer.html" import page_footer %}
|
|
{% from "components/form.html" import form_wrapper %}
|
|
|
|
{% block per_page_title %}
|
|
Change your {{ thing }}
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
{{ page_header(
|
|
'Change your {}'.format(thing),
|
|
back_link=back_link
|
|
) }}
|
|
|
|
<div class="grid-row">
|
|
<div class="column-three-quarters">
|
|
|
|
{% call form_wrapper(autocomplete=True) %}
|
|
{{ textbox(form.password, autocomplete='current-password') }}
|
|
{{ page_footer('Confirm') }}
|
|
{% endcall %}
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|