Tidy up inconsistencies in forms

Wherever possible, use the macros.
This commit is contained in:
Chris Hill-Scott
2016-02-01 16:40:04 +00:00
parent b5b13254c7
commit 9cf6dfa6f2
7 changed files with 32 additions and 29 deletions

View File

@@ -16,9 +16,13 @@ GOV.UK Notify | Confirm email address and mobile number
<form autocomplete="off" method="post">
{{ textbox(form.email_code) }}
<span class="font-xsmall"><a href="{{ url_for('.check_and_resend_email_code')}}">I haven't received an email</a></span>
<p>
<a href="{{ url_for('.check_and_resend_email_code')}}">I haven't received an email</a>
</p>
{{ textbox(form.sms_code) }}
<span class="font-xsmall"><a href="{{ url_for('.check_and_resend_text_code') }}">I haven't received a text</a></span>
<p>
<a href="{{ url_for('.check_and_resend_text_code') }}">I haven't received a text</a></span>
</p>
{{ page_footer("Continue") }}
</form>
</div>