Files
notifications-admin/app/templates/views/user-profile/change-password.html

28 lines
681 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 password</h1>
<div class="grid-row">
<div class="column-three-quarters">
<form method="post">
{{ textbox(form.old_password) }}
{{ textbox(form.new_password) }}
{{ page_footer(
'Save',
back_link=url_for('.user_profile'),
back_link_text="Back to your profile"
) }}
</form>
</div>
</div>
{% endblock %}