Craft 4 plugin for two-factor or two-step login using Time Based OTP (TOTP, like Google Authenticator). Every user can setup TOTP themselves, the plugin does not force users. Admins can list usage in user tables.
Login works as usual for users without 2-factor auth.
When enabled, the user is redirected to the 2-factor verification page after login. This means the user is already logged in. When the user tries to visit an other Control Panel page than the public ones before verification, the logout is triggered. This blocks the user from visiting the CP unverified.
- Craft 4.0.0 and up
- PHP 8.1 and up
- Set
verifyBackEnd
totrue
in the config file (this is the default). - Set
forceBackEnd
totrue
if you want to prevent users from accessing the control panel without first enabling 2FA.
When using a login for front end users, the following steps add 2FA support.
- Copy the two-factor-authentication.php file to your
config/
folder. - Set
verifyFrontEnd
totrue
in the config file. - Define what urls should be protected with 2FA verification. Choose between using the
frontEndPathAllow
orfrontEndPathExclude
! Using both will block everything! See config for additional info. - Build a 2FA login-verify form accessible by url like the example twig.
- Set the
verifyPath
. For ourlogin-verify.twig
example the path would belogin-verify
. - Allow users setting up 2FA in front end by building a template like the example twig.
- Set the
settingsPath
. For ourtwo-factor-settings.twig
example the path would betwo-factor-settings
.
Copy the two-factor-authentication.php file to your config/
folder.
Simply remove the user's twofactorauthentication_user
record. This disables 2FA for that user.
Copyright © Born05
See license