Announcements
Hi Team,
I have logged in through Azure AD B2c ,after sign in it showing home page. But We need once sign in it should redirect to specific page not home page. Please help here
If is is useful please make it as a verified
Hi Naresh,
Yes i have the solution
Ex:
If you want to redirect to contact us page after azure AD B2c sign in follow below steps
1.Create a new we template and page template
2.Web template use below code
<div id="mainContent" class = "wrapper-body" role="main">
{% include 'Page Copy' %}
{% if user %}
<script>
window.location.href=‘~/Contact Us’;
</script>
{% else %}
<script>
window.location.href=‘~/’;
</script>
{% end if %}
</div>
3.Create a page template using above web template
4.Now Whatever the page it is showing after azure ad b2c sign in, for that page add this page template(Ex: Now homepage is landing page, but we need to change it as a contact us page)
4. So go to homepage and add above created page template.
5.Now check automatically whenever sign in it will redirect to contact us page.
I have the same issue and would like to implement. Do you have anything working?
please let me know
Thank you
André Arnaud de Cal... 291,359 Super User 2024 Season 2
Martin Dráb 230,370 Most Valuable Professional
nmaenpaa 101,156