MFA using ASPNET Identity

How do I go about adding MFA to Radzen's default provider? Do I need to do this outside of the IDE or is it supported internally? Specifically I want to add TOTP access. I have the code to create a page which generates the QR code for an authenticator app, I just need to insert the validation of the authenticator code into the login flow.

Is this possible in the IDE, or do I have to do it via code and block those items from being overwritten?

Hi @dferreira042,

MFA is not available out-of-the-box, you need to add it to your application manually. You can use Startup partial methods to add your own extensions:

That's what I thought. Thanks for the links!

Could this approach also work for Angular? Thx!

Customizing the Startup class in Angular application is exactly the same:

1 Like