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
|
|
|
|
|
|
|
|
|
|
{% block page_title %}
|
2016-02-08 09:23:51 +00:00
|
|
|
|
Create a new password – GOV.UK Notify
|
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">
|
2016-02-01 16:57:29 +00:00
|
|
|
|
<div class="column-two-thirds">
|
|
|
|
|
|
{% if user %}
|
2016-02-02 14:05:45 +00:00
|
|
|
|
<h1 class="heading-large">
|
2016-02-01 16:57:29 +00:00
|
|
|
|
Create a new password
|
|
|
|
|
|
</h1>
|
|
|
|
|
|
<p>
|
|
|
|
|
|
You can now create a new password for your account.
|
|
|
|
|
|
</p>
|
|
|
|
|
|
<form method="post" autocomplete="off">
|
|
|
|
|
|
{{ textbox(form.new_password, hint="Your password must have at least 10 characters") }}
|
|
|
|
|
|
{{ page_footer("Continue") }}
|
|
|
|
|
|
</form>
|
|
|
|
|
|
{% else %}
|
|
|
|
|
|
<p>
|
|
|
|
|
|
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 %}
|