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://docs.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.