Created
January 21, 2022 05:27
-
-
Save mfcollins3/7a77a1b2182f673068f9fbb4eff640bf to your computer and use it in GitHub Desktop.
ShowSignUpForm technical profile for B2C
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ClaimsProviders> | |
<ClaimsProvider> | |
<DisplayName>Local User Provider</DisplayName> | |
<TechnicalProfiles> | |
<TechnicalProfile Id="ShowSignUpForm"> | |
<DisplayName>Sign Up Form</DisplayName> | |
<Description>Presentss the user with a form to complete to sign up for a user account</Description> | |
<Protocol Name="Proprietary" Handler="Web.TPEngine.Providers.SelfAssertedAttributeProvider, Web.TPEngine, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" /> | |
<Metadata> | |
<Item Key="ContentDefinitionReferenceId">api.localaccountsignup</Item> | |
</Metadata> | |
<OutputClaims> | |
<OutputClaim ClaimTypeReferenceId="signInName" Required="true" /> | |
<OutputClaim ClaimTypeReferenceId="newPassword" Required="true" /> | |
<OutputClaim ClaimTypeReferenceId="reenterPassword" Required="true" /> | |
<OutputClaim ClaimTypeReferenceId="objectId" /> | |
</OutputClaims> | |
<ValidationTechnicalProfiles> | |
<ValidationTechnicalProfile ReferenceId="CreateLocalUser" /> | |
</ValidationTechnicalProfiles> | |
<UseTechnicalProfileForSessionManagement ReferenceId="SSO-Default" /> | |
</TechnicalProfile> | |
</TechnicalProfiles> | |
</ClaimsProvider> | |
</ClaimsProviders> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment