I have an application where certain pages with extremely sensitive data require the user to re-validate their credentials before use.
The users are already authenticated using azure adb2c.
I don't want to log the user out when they reach this page, but need them to re-enter their credentials to access functionality on the page (eg like you might see in online banking apps).
I will know who the user is, so need to ensure the entered credentials match the logged in user.
One approach I can see is to open a new browser window, navigate to b2c sign in, and (presumably possible) apply a policy that prevents 'remember me' behaviour. I could then extract the signed-in identity from that window and check it against my real logged-in user.
However that feels overly clunky and there should be an elegant native way to achieve this. I can't find anything suggesting this is possible in adb2c docs - is there a recommended approach to solving this challenge?
Thanks!