Replace tabs with two spaces for consistency

This commit is contained in:
Chris Hill-Scott
2016-02-01 16:57:29 +00:00
parent 9cf6dfa6f2
commit 3f45dbf09d
19 changed files with 293 additions and 293 deletions

View File

@@ -9,24 +9,24 @@ GOV.UK Notify
{% block maincolumn_content %}
<div class="grid-row">
<div class="column-two-thirds">
{% if user %}
<h1 class="heading-xlarge">
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>
<div class="column-two-thirds">
{% if user %}
<h1 class="heading-xlarge">
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>
</div>
{% endblock %}