Skip to content

Instantly share code, notes, and snippets.

@mfcollins3
Created January 21, 2022 05:27
Show Gist options
  • Save mfcollins3/7a77a1b2182f673068f9fbb4eff640bf to your computer and use it in GitHub Desktop.
Save mfcollins3/7a77a1b2182f673068f9fbb4eff640bf to your computer and use it in GitHub Desktop.
ShowSignUpForm technical profile for B2C
<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