mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-05-31 09:12:14 +00:00
19 lines
525 B
Plaintext
19 lines
525 B
Plaintext
<%@ page import="org.springframework.security.core.AuthenticationException" %>
|
|
<%@ page import="org.springframework.security.web.authentication.AbstractAuthenticationProcessingFilter" %>
|
|
|
|
<html>
|
|
<head>
|
|
<title>Login to CAS failed!</title>
|
|
</head>
|
|
|
|
<body>
|
|
<h2>Login to CAS failed!</h2>
|
|
|
|
<font color="red">
|
|
Your CAS credentials were rejected.<br/><br/>
|
|
Reason: <%= ((AuthenticationException) session.getAttribute(AbstractProcessingFilter.SPRING_SECURITY_LAST_EXCEPTION_KEY)).getMessage() %>
|
|
</font>
|
|
|
|
</body>
|
|
</html>
|