Reset password doesn't show up on panel login

Hi all!
For the first time in a while I wanted to login to my panel, but I unfortunately forgot my password… So I copied this code for the password reset:

<?php

return [
'auth' => [
        'methods' => ['password', 'password-reset']
    ]
];   

And inserted it into my config.php in site>config on my server:

<?php
return [
  'debug'  => true

];


return [
'auth' => [
        'methods' => ['password', 'password-reset']
    ]
];  

?>

But the login for the panel still looks the same, what am I doing wrong?

It’d be great if I could have access again, thanks in advance! :smiling_face_with_tear:

All config options must be within one return array, everything after the first return statement will be ignored.