Statistics
| Branch: | Tag: | Revision:

root / gss / war / authenticationError.jsp @ 11af52e2

History | View | Annotate | Download (1.7 kB)

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