Email auth + 2FA #316
Email auth + 2FA
#316
-
Is possible to implement 2FA (TOTP) with the email auth, because seems that 2FA is requiring password field? |
Beta Was this translation helpful? Give feedback.
Answered by
janko
Aug 28, 2024
Replies: 1 comment 2 replies
-
Yes, TOTP setup only requires a password for accounts that have one. If the user has never set up a password for their account, and are logging in through other means (email auth, OmniAuth, passkey), Rodauth won't ask for password on TOTP setup. Moreover, you can always set |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
KimmoSalonen
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes, TOTP setup only requires a password for accounts that have one. If the user has never set up a password for their account, and are logging in through other means (email auth, OmniAuth, passkey), Rodauth won't ask for password on TOTP setup. Moreover, you can always set
two_factor_modifications_require_password?
tofalse
in your Rodauth configuration to not require a password even if the account has one.