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

26 lines
614 B
HTML
Raw Normal View History

{% 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>
2016-01-04 14:00:39 +00:00
<form autocomplete="off" action="" method="post">
{{ form.hidden_tag() }}
{{ render_field(form.email_address, class='form-control-2-3') }}
<p>
<button class="button" role="button">Send email</button>
</p>
2016-01-04 14:00:39 +00:00
</form>
</div>
</div>
{% endblock %}