I have a Django web app served from mydomain.com
I have a Wordpress site served from mydomain.com/shop
The two sites share navigation and are designed to look the same to provide a seamless experience for the user. I would like the authentication experience to also be seamless.
Both sites are using Auth0 for authentication. They use the same database connection as the single connection. They both use the universal login page.
SSO works but it is not seamless. A user can login on the Django app, by entering email and password in the ULP, then visit a page requiring login on the Wordpress site. They are then shown a ‘login’ button. They press the button and then they are automatically logged in without entering email and password in the ULP.
The same is also true if the user logs in on the Wordpress site and then visits a page requiring login on the Django site.
I want it to appear to the user that this is a single site and regardless of whether they log into the Django app or Wordpress site they are simply logged in to everything.
Is it possible to remove this step of clicking another ‘login’ button before being automatically logged in?