Direct users to sign up in SignInSignUp Combined Policy

Ryan Graf 21 Reputation points
2023-01-31T17:54:10.87+00:00

We are using a custom policy that implements SignInSignUp combined. Currently all users are directed to the sign in page by default, where they can then click the sign up link.

We have a scenario where we know a user wants to sign up and that they do not have an account. How can we direct users to the sign up page without them having to click the link from the sign in page?

Microsoft Entra ID
Microsoft Entra ID
A Microsoft Entra identity service that provides identity management and access control capabilities. Replaces Azure Active Directory.
19,465 questions
0 comments No comments
{count} votes

Accepted answer
  1. 2023-02-01T16:22:23.11+00:00

    Hello, Azure AD B2C SignInSignUp Combined Policy will always display the sign-in form first. You can control settings such as wheter to display the sign-up button or link but not to skip or choose the sign-in first. You may create a custom policy that depending on some custom query params passed (to be read using OAuth2 key-value parameters) can choose to skip the sign-up page and call the sign-in as a sub-journey.

    Let us know if you need additional assistance. If the answer was helpful, please accept it so that others can find a solution.

    0 comments No comments

1 additional answer

Sort by: Most helpful
  1. Ryan Graf 21 Reputation points
    2023-02-01T21:42:42.6033333+00:00

    Thank you. We were able to get this working using the above method. For those having similar issues, a fully working example is available: https://github.com/azure-ad-b2c/samples/tree/master/policies/sign-up-deep-link

    0 comments No comments