OtpLoginPlugin
Adds time-based one-time password authentication to the login form. The implementation uses standard SHA1 algorithm, 30s time interval and 6-digits code.
- Download the plugin and place it into the adminneo-plugins folder in the AdminNeo's current working directory.
- Add the plugin to the list in adminneo-plugins.php file:
<?php
// Files in `adminneo-plugins` are autoloaded, so it is not necessary to include the source files.
return [
new \AdminNeo\OtpLoginPlugin(base64_decode("0f/35Bwl1DwYYG8NjsGLVl3Hdlg=")),
];
- Add OTP login to your authentication application by scanning this QR code:
ℹ️ Note: The unique secret was randomly generated on this server and not stored anywhere.