2016-02-01 12:15:38 +00:00
|
|
|
|
{% extends "withoutnav_template.html" %}
|
2016-01-11 13:15:10 +00:00
|
|
|
|
{% from "components/textbox.html" import textbox %}
|
|
|
|
|
|
{% from "components/page-footer.html" import page_footer %}
|
2015-11-30 16:19:59 +00:00
|
|
|
|
|
2017-02-13 10:45:15 +00:00
|
|
|
|
{% block per_page_title %}
|
|
|
|
|
|
Create a new password
|
2015-11-30 16:19:59 +00:00
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
2016-02-01 12:15:38 +00:00
|
|
|
|
{% block maincolumn_content %}
|
2015-11-30 16:19:59 +00:00
|
|
|
|
|
|
|
|
|
|
<div class="grid-row">
|
|
|
|
|
|
<div class="column-two-thirds">
|
2016-05-10 11:36:49 +01:00
|
|
|
|
<h1 class="heading-large">Forgot your password?</h1>
|
2015-11-30 16:19:59 +00:00
|
|
|
|
|
2016-05-10 11:36:49 +01:00
|
|
|
|
<p>We’ll send you an email to create a new password.</p>
|
2015-11-30 16:19:59 +00:00
|
|
|
|
|
2017-10-16 16:40:03 +01:00
|
|
|
|
<form autocomplete="off" method="post" novalidate>
|
2016-03-18 12:05:50 +00:00
|
|
|
|
{{ textbox(form.email_address, safe_error_message=True) }}
|
2016-01-11 13:15:10 +00:00
|
|
|
|
{{ page_footer("Send email") }}
|
2016-01-04 14:00:39 +00:00
|
|
|
|
</form>
|
2016-01-11 13:15:10 +00:00
|
|
|
|
|
2015-11-30 16:19:59 +00:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
2015-12-15 08:20:25 +00:00
|
|
|
|
{% endblock %}
|