Add a temporary hard-coded notice for the extended token validity period. This should...
[pithos] / gss / war / authenticationError.jsp
1 <%--
2
3 Copyright 2009 Electronic Business Systems Ltd.
4  
5 This file is part of GSS.
6
7 GSS is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
11
12 GSS is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GSS.  If not, see <http://www.gnu.org/licenses/>.
19
20 --%>
21 <%@ page language="java" contentType="text/html; charset=UTF-8"
22     pageEncoding="UTF-8"%>
23 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
24
25 <%@page import="gr.ebs.gss.server.configuration.GSSConfigurationFactory"%><html>
26 <head>
27 <title><%= GSSConfigurationFactory.getConfiguration().getString("serviceName") %> Authentication</title>
28 <link href="/pithos/gss.css" rel="stylesheet" type="text/css">
29 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
30 </head>
31 <body>
32
33 <center>
34 <p>
35 <%= GSSConfigurationFactory.getConfiguration().getString("noUsernameMessage") %>
36 <P>eduPersonPrincipalName (eduPerson): -<BR>
37 <P>displayName (inetOrgPerson): <%= request.getParameter("name") %><BR>
38 <P>givenName (inetOrgPerson): <%= request.getParameter("givenname") %><BR>
39 <P>sn (person): <%= request.getParameter("sn") %><BR>
40 <P>cn (person): <%= request.getParameter("cn") %><BR>
41 <P>mail (inetOrgPerson): <%= request.getParameter("mail") %><BR>
42 <P>eduPersonPrimaryAffiliation (eduPerson): <%= request.getParameter("userclass") %><BR>
43 </center>
44
45 </body>
46 </html>