您好,我已在控制器中包含给定代码
def create
@user_session = User.new(user_params)
if @user_session.save
redirect_to apps_path
else
render send_notice("ERROR", find_error(@user_session), :new)
end
end
在我的en.yml文件中
authlogic:
error_messages:
password_invalid: Password is not valid
因此,当我提供正确的用户名和错误的密码时,它会向我显示错误消息 密码无效 但是当我提供正确的详细信息后,它会给我同样的错误登录后 密码无效 。 请指导我如何解决这个问题我不必给出任何成功的消息