Hi Support Team !
I am trying to disable two-factor authentication for logging into my portal. I currently have the following settings in my config.php
file:
<?php
return [
//= ❗️Error's
'debug' => true,
// https://getkirby.com/docs/reference/system/options/auth#login-methods
'auth' => [
'methods' => 'password'
],
//= Logout
'routes' => [
[
'pattern' => 'logout',
'action' => function() {
if ($user = kirby()->user()) {
$user->logout();
}
// Go to >
go('login');
}
]
],
];
?>
When a user subscribes, they receive a personalized notification, but in addition to that, they receive an email with the following content:
Your login code
I would like that email not to reach you because my login is only with a password and not with a code. Even in my auth methods parameters I only have password activated.
I await your response and help please.
Thank you very much.
Regards!