mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-05-02 23:20:56 -04:00
Start implementation for new-password endpoints. Created PasswordResetToken model ToDo: create and save token, send valid url to user, check validity of token, update user's password, redirect to /two-factor.
26 lines
629 B
HTML
26 lines
629 B
HTML
{% extends "admin_template.html" %}
|
|
|
|
{% block page_title %}
|
|
GOV.UK Notify
|
|
{% endblock %}
|
|
|
|
{% block fullwidth_content %}
|
|
|
|
<div class="grid-row">
|
|
<div class="column-two-thirds">
|
|
<h1 class="heading-xlarge">Create a new password</h1>
|
|
|
|
<p>If you have forgotten your password, we can send you an email to create a new password.</p>
|
|
|
|
<form autocomplete="off" action="" method="post">
|
|
{{ form.hidden_tag() }}
|
|
{{ render_field(form.email_address, class='form-control-2-3') }}
|
|
<p>
|
|
<button class="button" href="sign-in" role="button">Send email</button>
|
|
</p>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|