@PitaJ Thanks, it is actually not the issue of NodeBB, it is the decision on which strategy to choose. Anyway, I've done no worse than before, that is enough.
Test the out image links:
outlinks
Would it be reasonable to enable switching between main and alternative authentication methods in admin area?
Visitors often stay logged into their Facebook / Google accounts and offering Social Authentication first, may encourage user signup, same applies to users redirected from social networks, they're already logged in, ready to sign up with few clicks.
The SSO plugins display on the login page IIRC, are you asking for an interstitial or a header on the registration page?
@pitaj included a quick screenshot: Login with: SSO (or Alternatively login with Username/Email), I mean yes, the plugins display on the login page
Here's some custom CSS to show the Alternative Logins SSO section above the regular login on mobile:
@media(max-width: 992px) {
.page-login #content .row {
display: flex;
flex-direction: column-reverse;
}
}
@pitaj short and clean solution, thank you! How about rewriting the title? Here is the custom CSS but I guess this will not get translated to Chinese for e.g.:
@media(max-width: 992px) {
.page-login #content .row {
display: flex;
flex-direction: column-reverse;
}
.alt-login-block h4 {
visibility: hidden;
}
.alt-login-block h4:after {
position: absolute;
padding: 0px;
top: 0px;
display: block;
visibility: visible;
content:'Social Login';
}
}