In terms of UI, How User will get to know that That user is blocked?

Feature: Auth0 Blocked Users should get some message on login screen while they are trying to login.

Description: Using Management API, I have blocked one Auth0 User, now when that user tries to login(I have Used classic login), system goes from the login route within my web app to Auth0 login page, the blocked user enters credentials & then it gets redirected to an error URL which contains error: unauthorized.

Again system gets redirected back to login page within my web app without showing any error message regarding his account is block.

How can I show some message on login screen in my web app while they are trying to login, so they get to know the reason behind it…

Use-case:
Step 1 : Create New user from Auth0 and block him.
Step 2 : Try to login with that users credentials via Classic Login.
Step 3 : System should throw some error on Login Screen, that explains
that user is blocked.

Hi,
You could use Auth0’s Management API’s Search log events endpoint to fetch details about any failed login attempts by a blocked user…as such by checking these logs periodically, you can look for block events and use the email address from those logs to show a relevant error message on your web app’s login screen