mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-12 14:34:05 -05:00
26 lines
608 B
HTML
26 lines
608 B
HTML
{% extends "base.html" %}
|
||
{% from "components/page-footer.html" import page_footer %}
|
||
{% from "components/form.html" import form_wrapper %}
|
||
|
||
{% block per_page_title %}
|
||
Forgot your password?
|
||
{% endblock %}
|
||
|
||
{% block maincolumn_content %}
|
||
|
||
<div class="grid-row">
|
||
<div class="grid-col-8">
|
||
<h1 class="font-body-2xl margin-bottom-3">Forgot your password?</h1>
|
||
|
||
<p>We’ll send you an email to create a new password.</p>
|
||
|
||
{% call form_wrapper() %}
|
||
{{ form.email_address(error_message_with_html=True) }}
|
||
{{ page_footer("Send email") }}
|
||
{% endcall %}
|
||
|
||
</div>
|
||
</div>
|
||
|
||
{% endblock %}
|