Reputation: 471
I created a user flow for password reset and also for unified sign up/sign in with custom urls. When I go to my site it is still showing the default Azure pages for login/signup/resetpwd. Is there something I am missing to make these user flows "live"? Thank you!
Upvotes: 1
Views: 200
Reputation: 572
You'll need to change the client configuration to point to the new policy in the Authority property - that way your client knows to redirect to the new policy.
Example: https://{your-tenant-name}.b2clogin.com/{your-tenant-name}.onmicrosoft.com/{your-sign-in-sign-up-policy}
https://github.com/Azure-Samples/active-directory-b2c-javascript-angular-spa
Upvotes: 1
Reputation: 1065
In the same way as you did, it was ability to change the page style, but I used the default format https://<my b2c name>.b2clogin.com/static/tenant/templates/AzureBlue/selfAsserted.cshtml
for creating sign up and sign in user flow.
By the way,if you don't click the save button, it does not work.
And if you use customize the UI.The following two points need to be noted.
1.The important point is that you host the content on a publicly available HTTPS endpoint with CORS enabled. You must use an absolute URL when you specify it in your content.
2.Host your content on an HTTPS endpoint (with CORS allowed). Both GET and OPTIONS request methods must be enabled when configuring CORS.
Upvotes: 1