I recently enabled the oauth2 plugin and set it up with Google and it works great. Since all of my agents have company-issued GMail accounts, I thought it would be great to have one less password to have to issue everyone. While I don't want to completely get rid of the built-in user/pass login (Admin needs a way to log in to fix things if the oauth2 ever dies) I would like to make it less prominent on the login screen so that the Google login is the only immediately visible option, and you have to click something to get to the backup direct login form. Is that possible to do?
justdave
Not out-of-the-box. You will need to modify the codebase to accomplish this.
Cheers.
Thanks. For the time being I just have text on the agent sign-in page template to ask them to use the Sign in with Google button.
Accomplished what I was hoping for by adding the following to the bottom of scp/css/login.css :
scp/css/login.css
form#login { display: none; }
The admin in the know who needs to log in when oauth2 is broken can unhide it via the browser's developer tools. :-)