Files
notifications-admin/app/templates/views/forgot-password.html
T

26 lines
647 B
HTML
Raw Normal View History

{% extends "withoutnav_template.html" %}
2016-01-11 13:15:10 +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 %}
2017-02-13 10:45:15 +00:00
{% block per_page_title %}
Forgot your password?
{% endblock %}
{% block maincolumn_content %}
2020-02-19 11:57:15 +00:00
<div class="govuk-grid-row">
<div class="govuk-grid-column-two-thirds">
2023-06-06 15:28:24 -04:00
<h1 class="font-body-2xl margin-bottom-3">Forgot your password?</h1>
2023-06-06 15:28:24 -04:00
<p>Well send you an email to create a new password.</p>
2018-09-19 12:39:36 +01:00
{% call form_wrapper() %}
2020-08-07 15:16:04 +01:00
{{ form.email_address(error_message_with_html=True) }}
2016-01-11 13:15:10 +00:00
{{ page_footer("Send email") }}
2018-09-19 12:39:36 +01:00
{% endcall %}
2016-01-11 13:15:10 +00:00
</div>
</div>
2015-12-15 08:20:25 +00:00
{% endblock %}