I have been using the b2c starter packs and MSDN docs about ContentDefinitions, as well as the various other aspects of the Azure B2C offering.
As anybody who has ever tried implementing custom policies has realised, the documentation isn't always so thorough or explicit, and is often grammatically incorrect or missing details.
With this in mind, I wonder:
- Is it possible to trigger the 'sign up' screen before the 'sign in' screen in a unified signup/signin flow?
- Also, is it possible to add a 'sign in' screen link to the 'sign up' screen?
I know that it is possible to add a 'sign up' screen link to a ContentDefinition by adding<Item Key="setting.showSignupLink">false</Item>to its MetaData, but this link seems to come out of the box anyway when using theapi.signuporsigninContentDefinition.
So far, I have tried adding a<Item Key="setting.showSigninLink">false</Item>to my ContentDefinition's MetaData block, but to no avail (I didn't find this in the MSDN docs anywhere, just had a thought to try it).
To clarify, in a signup/signin flow, I would like to show the 'sign up' screen as soon as I launch the policy, then optionally navigate to the 'sign in' page.
Any suggestions would be greatly appreciated.