Reputation: 31
I want to add additional user input fields to my user logon page. Its trivial to add additional fields to a user registration page by adding a new claimType for my field and then referencing the claim as an OutputClaim as in the example at https://learn.microsoft.com/en-us/azure/active-directory-b2c/active-directory-b2c-configure-signup-self-asserted-custom.
However when I add the same OutputClaim field to a standard logon journey such as SelfAsserted-LocalAccountSignin-Email, it won't show the new field, but will fail validate with an error that my field is missing. Adding it as an InputClaim made no difference.
Any help greatly appreciated.
Upvotes: 3
Views: 509
Reputation: 5048
want to add additional user input fields to my user logon page.
No, it is not possible and it is by design.
Workaround
Adding one more page after Successful sign-in and get the additional values as input from the next self-asserted page.
Advantage of adding new self-asserted page
If you add a new page that can work for both Social and Local accounts too.
Upvotes: 1