Refactored the error handling in the SHIRE servlet POST processing. Separated presen...
[java-idp.git] / webApplication / wayferror.jsp
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE html 
3         PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 
4         "DTD/xhtml1-strict.dtd">
5         <%@ taglib uri="/WEB-INF/tlds/struts-logic.tld" prefix="logic" %>
6         <%@ taglib uri="/WEB-INF/tlds/struts-bean.tld" prefix="bean" %>
7         
8         <jsp:useBean id="requestURL" scope="application" class="java.lang.String"/>
9         <jsp:useBean id="errorText" scope="request" class="java.lang.String"/>
10         <jsp:useBean id="supportContact" scope="application" class="java.lang.String"/>
11         <jsp:useBean id="logoLocation" scope="application" class="java.lang.String"/>
12         
13 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
14 <head>
15         <link rel="stylesheet" type="text/css" href="main.css" />
16         <title>Access System Failure</title>
17 </head>
18
19 <body>
20 <div class="head">
21 <img src="<bean:write name="logoLocation" />" alt="Logo" />
22 <h1>Inter-institutional Access System Failure</h1>
23 </div>
24
25 <p>The inter-institutional access system experienced a technical failure.</p>
26
27 <p>Please email <a href="mailto:<bean:write name="supportContact" />"><bean:write name="supportContact" /></a> and include the following error message:</p>
28
29 <p class="error">WAYF failure at (<bean:write name="requestURL" />)</p>
30
31 <p><bean:write name="errorText" /></p>
32
33
34 </body>
35 </html>