Awesome! BTW: If you are implementing a frontend login form, it’s better to use the following:
$user = $kirby->auth()->login($email, $password, /* $long = */ true);
The advantage is that this will give you brute-force protection for free.
Awesome! BTW: If you are implementing a frontend login form, it’s better to use the following:
$user = $kirby->auth()->login($email, $password, /* $long = */ true);
The advantage is that this will give you brute-force protection for free.