I have been unable to figure out how to set the /authorize link such that it opens to the signup-password screen in the New Universal Login flow. I’ve tried setting prompt = signup-password but it still just opens to the sign up screen and not the signup-password screen.
Hey there @wesparklemaster! Welcome to auth0!
I have the same results but as there’s not that big difference in the appearance between the two screens, and as a workaround, you could try to update the signup screen to look like the signup-password one. To do so, you can call the management API to update the title and description to be the same as in the signup-password:
curl --request PUT \
--url 'https://your_custom_domian/api/v2/prompts/signup' \
--header 'authorization: Bearer MGMT_API_ACCESS_TOKEN' \
--header 'content-type: application/json' \
--data '{ "signup": { "title": "Create your account", "description": "Set your password for ${companyName} to continue to ${clientName}" } }'
And then invoke the updated signup screen as you did in your URL above. Hope this will help!
1 Like
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.