Files
notifications-admin/app/templates/views/new-password.html
Katie Smith b9b9a138f9 Replace grid-row with govuk-grid-row
Replaced all instances of `grid-row` in the HTML and JavaScript with
`govuk-grid-row`, which is the new GOV.UK Frontend class.
2020-03-06 11:11:41 +00:00

34 lines
886 B
HTML

{% extends "withoutnav_template.html" %}
{% from "components/textbox.html" import textbox %}
{% from "components/page-footer.html" import page_footer %}
{% from "components/form.html" import form_wrapper %}
{% block per_page_title %}
Create a new password
{% endblock %}
{% block maincolumn_content %}
<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>
{% call form_wrapper() %}
{{ textbox(form.new_password, hint="At least 8 characters") }}
{{ page_footer("Continue") }}
{% endcall %}
{% else %}
<p>
Message about email address does not exist. Some one needs to figure out the words here.
</p>
{% endif %}
</div>
</div>
{% endblock %}