Enable password, passwordless, social logins and sso for the same tenant

I am using Classic login page and using that I have been able to implement password, password less and social logins using the Auth0.js

But I am unable to find any api for doing the same for sso (SSO has been configured and is used in our app but we want to allow all the login methods and hence classic login page)

Also, if there’s a way that I can achieve the above using Universal login page. I can go with that approach aswell

Hi @suraj.maharana

Welcome to the Auth0 Community!

Thank you for posting your question,

In terms of the classic universal login, please check this knowledge solution → How to use Passwordless, Database and Social connections in the same classic universal login page

Unfortunately, Universal Login does not directly support having both Passwordless and Password in the same login user interface. However, you can pass the “connection” parameter when calling Auth0 so that the Universal login prompt will know in advance which connection will be used.

For example, you can add the parameter “connection=sms” to the /authorize request, and the new universal login will use SMS otp passwordless in those attempts. Alternatively, you may also send a “password” connection to the /authorize request. This approach would require you to know in advance (before calling auth0) which connection the user wants to use.

Thanks
Dawid

Hey @dawid.matuszczyk thanks for responding.

As my use case is not possible using New Universal login page

I want to use the classic login page and I have already implemented this

Here the only missing part is SSO integration
If you can direct me on how to implement SSO in the classic login page

I have gone through the docs and they don’t tell much

Mentioning again for clarity

I want to have password, passwordless, social logins and sso on my login page