Swap order of fields of three factor page

Most people seem to get the text message before the email, so it makes sense
for this to be the first field on the page.
This commit is contained in:
Chris Hill-Scott
2016-02-09 10:49:28 +00:00
parent 2da67fa78f
commit ff400d7857

View File

@@ -15,18 +15,18 @@
Weve sent you confirmation codes by email and text message.
</p>
<form autocomplete="off" method="post">
{{ textbox(
form.email_code,
width='5em',
help_link=url_for('.check_and_resend_email_code'),
help_link_text='I havent received an email'
) }}
{{ textbox(
form.sms_code,
width='5em',
help_link=url_for('.check_and_resend_text_code'),
help_link_text='I havent received a text message'
) }}
{{ textbox(
form.email_code,
width='5em',
help_link=url_for('.check_and_resend_email_code'),
help_link_text='I havent received an email'
) }}
{{ page_footer("Continue") }}
</form>
</div>