How to Combine signup workflow in forgot password page in custom policy

Basavaraj-V-IG 0 Reputation points
2023-07-05T05:45:15.57+00:00

We have one requirement is that we need to have signup link on the forgot password (send code) page, how we can achieve this using custom policy please help me on this

User's image

Microsoft Entra External ID
Microsoft Entra External ID
A modern identity solution for securing access to customer, citizen and partner-facing apps and services. It is the converged platform of Azure AD External Identities B2B and B2C. Replaces Azure Active Directory External Identities.
2,733 questions
Microsoft Entra ID
Microsoft Entra ID
A Microsoft Entra identity service that provides identity management and access control capabilities. Replaces Azure Active Directory.
20,274 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Anonymous
    2023-07-05T05:49:25.17+00:00

    Hi @Basavaraj

    1. Create a Custom Policy: If you haven't already, create a custom policy in Azure Active Directory B2C to customize the user journey.
    2. Edit the User Journey: Within your custom policy, locate the user journey that corresponds to the forgot password (send code) page. Typically, the user journey name is PasswordReset.
    3. Add a Sign-up Link: Within the user journey, find the step where the user is prompted to enter their email address or username for password reset. In that step, you can add a link to the sign-up page.
    <ContentDefinition>   
    
    <LocalizedResourcesReferences MergeBehavior="Prepend">   
      <LocalizedResourcesReference Language="en" LocalizedResourcesReferenceId="api.selfasserted.lostusername.signup.link" /> 
      </LocalizedResourcesReferences> </ContentDefinition> 
    
    
    

    Define the Sign-up Link Text: In the <LocalizedResources> section of your custom policy, define the localized text for the sign-up link.

    1 person found this answer helpful.