next to the login button on my website i want to put a signup-button.
so i tried to copy this link:
“https://…eu.auth0.com/u/signup?state=g6F…”
But it allways start on the login-screen.
I use the php laravel-framework there is a login controller …
…
$authorize_params = [‘scope’ => ‘openid profile email’];
return \App::make(‘auth0’)->login(null, null, $authorize_params);
…
is there a way to change the initialScreen with $authorize-parameters?