From ff400d785775b85b0274b75be2e92d1e121ecf9a Mon Sep 17 00:00:00 2001 From: Chris Hill-Scott Date: Tue, 9 Feb 2016 10:49:28 +0000 Subject: [PATCH] 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. --- app/templates/views/verify.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/app/templates/views/verify.html b/app/templates/views/verify.html index fc8eeb071..dcde0a4f3 100644 --- a/app/templates/views/verify.html +++ b/app/templates/views/verify.html @@ -15,18 +15,18 @@ We’ve sent you confirmation codes by email and text message.

- {{ textbox( - form.email_code, - width='5em', - help_link=url_for('.check_and_resend_email_code'), - help_link_text='I haven’t received an email' - ) }} {{ textbox( form.sms_code, width='5em', help_link=url_for('.check_and_resend_text_code'), help_link_text='I haven’t received a text message' ) }} + {{ textbox( + form.email_code, + width='5em', + help_link=url_for('.check_and_resend_email_code'), + help_link_text='I haven’t received an email' + ) }} {{ page_footer("Continue") }}