Type a new password and submit. Copy the generated bcrypt hash into
config.php as the value of ADMIN_PASS_HASH.
The password itself is never stored.
Paste it into config.php, replacing the current value:
define('ADMIN_PASS_HASH', '= h($hash) ?>');
Verification check: = password_verify($password, $hash) ? '✓ hash matches the password' : '✗ mismatch' ?>
Please enter a non-empty password.
Security note: delete this file (or block access to it) when you are done — it lets anyone who can reach it generate hashes.