summaryrefslogtreecommitdiff
path: root/src/main/webapp/wayferror.jsp
blob: 1fd564a7b6bb5569493c01563508d9c6184b57f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html 
	PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 
	"DTD/xhtml1-strict.dtd">
	<%@ taglib uri="/WEB-INF/tlds/struts-logic.tld" prefix="logic" %>
	<%@ taglib uri="/WEB-INF/tlds/struts-bean.tld" prefix="bean" %>
	
	<jsp:useBean id="requestURL" scope="request" class="java.lang.String"/>
	<jsp:useBean id="errorText" scope="request" class="java.lang.String"/>

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
	<link rel="stylesheet" type="text/css" href="main.css" />
	<title>Access System Failure</title>
</head>

<body>
<div class="head">
<img src="images/logo.jpg" alt="Logo" />
<h1>Inter-institutional Access System Failure</h1>
</div>

<p>The inter-institutional access system experienced a technical failure.</p>

<p>Please email <a href="mailto:user@domain"> administrator's name</a> and include the following error message:</p>

<logic:notEmpty name="requestURL">
<p class="error">Discovery Service failure at (<bean:write name="requestURL" />)</p>

<p><bean:write name="errorText" /></p>
</logic:notEmpty>
<logic:empty name="requestURL">
<p class="error">The Discovery Service should not be called directly</p>
</logic:empty>


</body>
</html>