Statistics
| Branch: | Tag: | Revision:

root / war / authenticationError.jsp @ a60ea262

History | View | Annotate | Download (2 kB)

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/main.css" rel="stylesheet" type="text/css">
29
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
30
</head>
31
<body>
32
<div class="wrapper" >
33
<div class="header"></div>
34
<div class="image_logo">
35
<table><tr>
36
  <td><a href="/"><img src="/pithos/images/service-logo.png"></img></a>
37
</tr></table>
38
</div> <!-- image_logo -->
39
<div style="clear: both; "> </div>
40
<div class="page_main">
41
<center>
42
<p>
43
<%= GSSConfigurationFactory.getConfiguration().getString("noUsernameMessage") %>
44
<P>eduPersonPrincipalName (eduPerson): -<BR>
45
<P>displayName (inetOrgPerson): <%= request.getParameter("name") %><BR>
46
<P>givenName (inetOrgPerson): <%= request.getParameter("givenname") %><BR>
47
<P>sn (person): <%= request.getParameter("sn") %><BR>
48
<P>cn (person): <%= request.getParameter("cn") %><BR>
49
<P>mail (inetOrgPerson): <%= request.getParameter("mail") %><BR>
50
</center>
51
</div>
52
<div class="footer"></div>
53
</div> <!-- wrapper -->
54
</body>
55
</html>