The login by email is getting fatal error (blank screen).
Explanation:
OJS username are set as in DB as VARCHAR(32), however, it allows login with e-mail which is VARCHAR(255).
So, you set table badpw_failedlogins with username as VARCHAR(32) which is correct, but it tries to insert the email as the username, getting error from database.
A solution would find the username for that email.