2009-04-13 13:43:23 +00:00
|
|
|
<%@ page import="org.springframework.security.core.AuthenticationException" %>
|
2009-05-12 05:37:11 +00:00
|
|
|
<%@ page import="org.springframework.security.web.authentication.AbstractAuthenticationProcessingFilter" %>
|
2008-01-28 16:03:28 +00:00
|
|
|
|
|
|
|
<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>
|
2009-04-18 06:04:56 +00:00
|
|
|
</html>
|