diff --git a/perllib/FixMyStreet/App/Controller/Auth.pm b/perllib/FixMyStreet/App/Controller/Auth.pm index 79eb29aba4c..052e97630ba 100644 --- a/perllib/FixMyStreet/App/Controller/Auth.pm +++ b/perllib/FixMyStreet/App/Controller/Auth.pm @@ -44,10 +44,7 @@ sub general : Path : Args(0) { # decide which action to take $c->detach('code_sign_in') if $clicked_sign_in_by_code || ($data_email && !$data_password); - if (!$data_username && !$data_password && !$data_email && $c->get_param('social_sign_in')) { - $c->forward('social/handle_sign_in'); - } - + $c->detach('social/handle_sign_in') if $c->get_param('social_sign_in'); $c->forward( 'sign_in', [ $data_username ] ) && $c->detach( 'redirect_on_signin', [ $c->get_param('r') ] ); diff --git a/templates/web/base/auth/general.html b/templates/web/base/auth/general.html index 89d2c3d427c..c5de7862068 100644 --- a/templates/web/base/auth/general.html +++ b/templates/web/base/auth/general.html @@ -18,11 +18,9 @@

[% loc('Sorry, we could not log you in. Please fill in the form below.') %]

[% END %] +[% IF NOT oauth_need_email AND c.cobrand.social_auth_enabled %]
- - -[% IF NOT oauth_need_email AND c.cobrand.social_auth_enabled %] [% IF c.config.FACEBOOK_APP_ID %]
[% END %] -
+ [% END %] - [% loc_username_error = INCLUDE 'auth/_username_error.html' default='email' %] +
+ + + [% loc_username_error = INCLUDE 'auth/_username_error.html' default='email' %] [% IF c.cobrand.sms_authentication %] [% SET username_label = loc('Your email or mobile') %] @@ -60,26 +61,22 @@

[% SET username_type = 'email' %] [% END %] - - [% IF loc_username_error %] -
[% loc_username_error %]
+ + [% IF loc_username_error %] +
[% loc_username_error %]
+ [% END %] + + +
+ [% IF oauth_need_email %] + [% INCLUDE form_sign_in_no %] + + [% ELSE %] + [% INCLUDE form_sign_in_yes %] + [% INCLUDE form_sign_in_no %] [% END %] - - -
- [% IF oauth_need_email %] - [% INCLUDE form_sign_in_no %] - - [% ELSE %] - [% INCLUDE form_sign_in_yes %] - [% INCLUDE form_sign_in_no %] - [% END %] -
- -[% IF NOT oauth_need_email AND c.cobrand.social_auth_enabled %] -
-[% END %] +

diff --git a/templates/web/camden/auth/general.html b/templates/web/camden/auth/general.html index cf916b5e89f..de0ee01556a 100644 --- a/templates/web/camden/auth/general.html +++ b/templates/web/camden/auth/general.html @@ -42,11 +42,19 @@

[% ELSE %] [% INCLUDE form_sign_in_yes %] [% INCLUDE form_sign_in_no %] - [% INCLUDE form_sign_in_camden_staff %] [% END %] +[% IF c.cobrand.feature('oidc_login') AND NOT oauth_need_email %] +
+ + +
+[% END %] + [% INCLUDE 'footer.html' %] [% BLOCK form_sign_in_yes %] @@ -76,11 +84,3 @@

[%~ END ~%] ">

[% END %] - -[% BLOCK form_sign_in_camden_staff %] - [% IF c.cobrand.feature('oidc_login') %] - - [% END %] -[% END %] diff --git a/templates/web/hackney/auth/general.html b/templates/web/hackney/auth/general.html index 791bf47569e..9f5dc719f7f 100644 --- a/templates/web/hackney/auth/general.html +++ b/templates/web/hackney/auth/general.html @@ -44,11 +44,19 @@

[% ELSE %] [% INCLUDE form_sign_in_yes %] [% INCLUDE form_sign_in_no %] - [% INCLUDE form_sign_in_hackney_staff %] [% END %] +[% IF c.cobrand.feature('oidc_login') AND NOT oauth_need_email %] +
+ + +
+[% END %] + [% INCLUDE 'footer.html' %] [% BLOCK form_sign_in_yes %] @@ -78,11 +86,3 @@

[%~ END ~%] ">

[% END %] - -[% BLOCK form_sign_in_hackney_staff %] - [% IF c.cobrand.feature('oidc_login') %] - - [% END %] -[% END %]