Files
notifications-admin/app/templates/views/new-password.html
T

34 lines
886 B
HTML
Raw Normal View History

{% 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 %}
2018-09-19 12:39:36 +01:00
{% from "components/form.html" import form_wrapper %}
2017-02-13 10:45:15 +00:00
{% block per_page_title %}
Create a new password
{% endblock %}
{% block maincolumn_content %}
2020-02-19 11:57:15 +00:00
<div class="govuk-grid-row">
<div class="column-two-thirds">
{% if user %}
<h1 class="heading-large">
Create a new password
</h1>
<p>
You can now create a new password for your account.
</p>
2018-09-19 12:39:36 +01:00
{% call form_wrapper() %}
2016-09-28 14:57:50 +01:00
{{ textbox(form.new_password, hint="At least 8 characters") }}
{{ page_footer("Continue") }}
2018-09-19 12:39:36 +01:00
{% endcall %}
{% else %}
<p>
Message about email address does not exist. Some one needs to figure out the words here.
</p>
{% endif %}
</div>
</div>
2015-12-04 15:02:00 +00:00
{% endblock %}