blob: 2206fe3013306efe826cddf53441d22d259a641e (
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
|
<%@ page pageEncoding="UTF-8" %>
<%@ taglib uri="http://www.springframework.org/tags" prefix="spring" %>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title><spring:message code="${root.title}" text="Shibboleth IdP" /></title>
<link rel="stylesheet" type="text/css" href="<%= request.getContextPath()%>/css/main.css">
</head>
<body>
<div class="wrapper">
<div class="container">
<header>
<a class="logo" href="../images/dummylogo.png"><img src="<%= request.getContextPath() %>/images/dummylogo.png" alt="Replace or remove this logo"></a>
</header>
<div class="content">
<h2><spring:message code="${root.message}" text="No services are available at this location." /></h2>
</div>
</div>
<footer>
<div class="container container-footer">
<p><spring:message code="${root.footer}" text="Insert your footer text here." /></p>
</div>
</footer>
</div>
</body>
</html>
|