2024-04-24 12:31:00 -07:00
|
|
|
{% extends "base.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 %}
|
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
|
|
|
|
2023-08-23 16:18:25 -04:00
|
|
|
<div class="grid-row">
|
|
|
|
|
<div class="grid-col-8">
|
2016-02-01 16:57:29 +00:00
|
|
|
{% if user %}
|
2023-06-06 15:28:24 -04:00
|
|
|
<h1 class="font-body-2xl margin-bottom-3">
|
2016-02-01 16:57:29 +00:00
|
|
|
Create a new password
|
|
|
|
|
</h1>
|
2023-06-06 15:28:24 -04:00
|
|
|
<p>
|
2016-02-01 16:57:29 +00:00
|
|
|
You can now create a new password for your account.
|
|
|
|
|
</p>
|
2018-09-19 12:39:36 +01:00
|
|
|
{% call form_wrapper() %}
|
2020-08-07 09:53:09 +01:00
|
|
|
{{ form.new_password(param_extensions={"hint": {"text": "At least 8 characters"}}) }}
|
2016-02-01 16:57:29 +00:00
|
|
|
{{ page_footer("Continue") }}
|
2018-09-19 12:39:36 +01:00
|
|
|
{% endcall %}
|
2016-02-01 16:57:29 +00:00
|
|
|
{% else %}
|
2023-06-06 15:28:24 -04:00
|
|
|
<p>
|
2016-02-01 16:57:29 +00:00
|
|
|
Message about email address does not exist. Some one needs to figure out the words here.
|
|
|
|
|
</p>
|
|
|
|
|
{% endif %}
|
|
|
|
|
</div>
|
2015-11-30 16:19:59 +00:00
|
|
|
</div>
|
|
|
|
|
|
2015-12-04 15:02:00 +00:00
|
|
|
{% endblock %}
|