Making my login page to universal login page

I have an angular js application, i m using implicit grant and universal login.
currently the flow is we launch our own login page, when user clicks on login in button user is directed to auth0.com where he/she enters her username and password.

i want to direct the user directly to auth0.com without the need of a button click in my application’s login page. is it possible ?

Hi @aravind.somashekar,

Yes, this is possible. Essentially, your application needs to make a call to the /authorize endpoint, as outlined in the API documentation:
https://auth0.com/docs/api/authentication#database-ad-ldap-passive-

To simplify this, you could use the Auth0.js library and call the authorize() method with the relevant parameters. Our AngularJS quickstart provides on overview on how this can be achieved:

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.