Files
notifications-admin/app/templates/views/user-profile/authenticate.html
2016-01-13 12:44:12 +00:00

27 lines
565 B
HTML

{% extends "admin_template.html" %}
{% from "components/textbox.html" import textbox %}
{% from "components/page-footer.html" import page_footer %}
{% block page_title %}
GOV.UK Notify | Service settings
{% endblock %}
{% block fullwidth_content %}
<h1 class="heading-xlarge">Change your {{ thing }}</h1>
<div class="grid-row">
<div class="column-three-quarters">
<form method="post">
{{ textbox(form.password) }}
{{ page_footer(
'Confirm',
back_link=back_link
) }}
</form>
</div>
</div>
{% endblock %}