From 3306ac721480bc7416a66cd7badb64e362b40d78 Mon Sep 17 00:00:00 2001 From: Mrugesh Mohapatra Date: Mon, 15 Jan 2018 12:06:12 +0530 Subject: [PATCH 1/2] fix: Update sign up flow copy --- server/views/account/email-signin.jade | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/server/views/account/email-signin.jade b/server/views/account/email-signin.jade index d3a11c3b8a..e6765d4700 100644 --- a/server/views/account/email-signin.jade +++ b/server/views/account/email-signin.jade @@ -10,7 +10,7 @@ block content #flash-content .row .text-center - h2 Sign in or Sign Up with an Email here: + h2 Create a new account or Sign in with an Email here: .button-spacer .col-sm-6.col-sm-offset-3 form(method='POST', action='/passwordless-auth') @@ -27,11 +27,13 @@ block content p.text-center | freeCodeCamp uses passwordless authentication. br - | Sign up instantly, using a valid email address, or Sign in + | Create a new account instantly, using a valid email address, or Sign in | using your existing email with us, if you already have an account. + p.text-center + a(href="https://medium.freecodecamp.org/360-million-reasons-to-destroy-all-passwords-9a100b2b5001") Learn more about passwordless authentication. br p.text-center - a(href="/deprecated-signin") Or click here if you want to sign in with other options. + a(href="/deprecated-signin") Or click here if you want to sign in with other options. script. $(document).ready(function() { @@ -39,11 +41,11 @@ block content if (isDisabled) { $('#magic-btn') .prop('disabled', true) - .html('Ok - We will attempt sending to the email above.'); + .html('Ok - We will attempt sending a link to the email above.'); } else { $('#magic-btn') .prop('disabled', true) - .html('Did not get a link? Reload the page and resend again.'); + .html('Did not get a link? Reload the page and try again.'); } } From 297dc3167eb3c2ec184f87f380837250829a3d2c Mon Sep 17 00:00:00 2001 From: Mrugesh Mohapatra Date: Thu, 18 Jan 2018 01:41:33 +0530 Subject: [PATCH 2/2] fix: Update captalize, change btn label, and link targe --- server/views/account/email-signin.jade | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/server/views/account/email-signin.jade b/server/views/account/email-signin.jade index e6765d4700..c93d93d4b2 100644 --- a/server/views/account/email-signin.jade +++ b/server/views/account/email-signin.jade @@ -10,7 +10,7 @@ block content #flash-content .row .text-center - h2 Create a new account or Sign in with an Email here: + h2 Create a New account or Sign In with an Email here: .button-spacer .col-sm-6.col-sm-offset-3 form(method='POST', action='/passwordless-auth') @@ -20,17 +20,17 @@ block content .button-spacer button#magic-btn.btn.btn-primary.btn-lg.btn-block(type='submit') span.fa.fa-envelope - | Get a magic link to sign in. + | Get a magic link on your email above. .row .col-sm-6.col-sm-offset-3 br p.text-center | freeCodeCamp uses passwordless authentication. br - | Create a new account instantly, using a valid email address, or Sign in + | Create a New account instantly, using a valid email address, or Sign In | using your existing email with us, if you already have an account. p.text-center - a(href="https://medium.freecodecamp.org/360-million-reasons-to-destroy-all-passwords-9a100b2b5001") Learn more about passwordless authentication. + a(href="https://medium.freecodecamp.org/360-million-reasons-to-destroy-all-passwords-9a100b2b5001" target="_blank" rel="noopener") Learn more about passwordless authentication. br p.text-center a(href="/deprecated-signin") Or click here if you want to sign in with other options.