identity_name for my project is just username field, not email.
I have turned on debug_authentication_failures and I get two warnings with details
[warning] Authentication failed: Password is not valid
Details: %AshAuthentication.Errors.AuthenticationFailed{
...}
and
[warning] Authentication failed: Forbidden
*Authentication failed
Details: %AshAuthentication.Errors.AuthenticationFailed{
... }
i have also tried this overrides for Sign-In component:
override Components.SignIn do
set :root_class, """
flex-1 flex flex-col justify-center py-12 px-4 sm:px-6 lg:flex-none
lg:px-20 xl:px-24
"""
set :strategy_class, "mx-auto w-full max-w-sm lg:w-96"
set :authentication_error_container_class, "text-error text-center"
set :authentication_error_text_class, "text-red-600 font-semibold"
set :show_banner, true
end






















