OpenAMIdPInstallDebianLenny: login_failed_template.jsp

File login_failed_template.jsp, 5.1 kB (added by l.suhrbier, 2 years ago)
Line 
1<%--
2   DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
3 
4   Copyright (c) 2005 Sun Microsystems Inc. All Rights Reserved
5 
6   The contents of this file are subject to the terms
7   of the Common Development and Distribution License
8   (the License). You may not use this file except in
9   compliance with the License.
10                                                                               
11   You can obtain a copy of the License at
12   https://opensso.dev.java.net/public/CDDLv1.0.html or
13   opensso/legal/CDDLv1.0.txt
14   See the License for the specific language governing
15   permission and limitations under the License.
16                                                                               
17   When distributing Covered Code, include this CDDL
18   Header Notice in each file and include the License file
19   at opensso/legal/CDDLv1.0.txt.
20   If applicable, add the following below the CDDL Header,
21   with the fields enclosed by brackets [] replaced by
22   your own identifying information:
23   "Portions Copyrighted [year] [name of copyright owner]"
24                                                                               
25   $Id: login_failed_template.jsp,v 1.5 2008/08/15 01:05:29 veiming Exp $
26                                                                               
27--%>
28
29
30
31
32<html>
33
34<%@page info="Authentication Failed" language="java"%>
35<%@taglib uri="/WEB-INF/jato.tld" prefix="jato"%>
36<%@taglib uri="/WEB-INF/auth.tld" prefix="auth"%>
37<jato:useViewBean className="com.sun.identity.authentication.UI.LoginViewBean">
38
39
40<%@ page contentType="text/html" %>
41
42<head>
43<title><jato:text name="htmlTitle_AuthFailed" /></title>
44
45<%
46String ServiceURI = (String) viewBean.getDisplayFieldValue(viewBean.SERVICE_URI);
47%>
48
49<link rel="stylesheet" href="<%= ServiceURI %>/css/styles.css" type="text/css" />
50<script language="JavaScript" src="<%= ServiceURI %>/js/browserVersion.js"></script>
51<script language="JavaScript" src="<%= ServiceURI %>/js/auth.js"></script>
52
53<script language="javascript">
54    writeCSS('<%= ServiceURI %>');
55</script>
56<script type="text/javascript"><!--// Empty script so IE5.0 Windows will draw table and button borders
57//-->
58</script>
59</head>
60
61<body class="LogBdy">
62  <table border="0" cellpadding="0" cellspacing="0" align="center" title="">
63    <tr>
64      <td class="LogMidBnd" style="background-image: url(<%= ServiceURI %>/images/gradlogsides.jpg);
65        background-repeat:repeat-x;background-position:left top;">&nbsp;</td>
66      <td class="LogCntTd" style="background-image: url(<%= ServiceURI %>/images/login-backimage.jpg);
67        background-repeat:no-repeat;background-position:left top;" height="435" align="center" valign="middle">
68        <table border="0" background="<%= ServiceURI %>/images/dot.gif" cellpadding="0" cellspacing="0"
69        width="100%" title="">
70          <tr>
71            <td width="260"><img src="<%= ServiceURI %>/images/dot.gif" width="260" height="245" alt="" /></td>
72            <td width="415" bgcolor="#ffffff" valign="top"><img name="Login.productLogo"
73            src="<%= ServiceURI %>/images/PrimaryProductName.png" alt="<auth:resBundle bundleName="amAuthUI" resourceKey="basic_realm" />"
74            border="0" />
75              <table border="0" cellspacing="0" cellpadding="0">
76                <tr>
77                  <td colspan="2">
78                      <img src="<%= ServiceURI %>/images/dot.gif" width="1" height="25" alt="" />                               
79                  </td>
80                </tr>           
81                <tr>
82                  <td>&nbsp;</td>
83                  <td><div class="logErr"><table align="center" border="0" cellpadding="0" cellspacing="0"
84                    class="AlrtTbl" title="">
85                <tr>
86                <td valign="middle">
87                <div class="AlrtErrTxt">
88                <img name="Login.AlertImage" src="<%= ServiceURI %>/images/error_large.gif" alt="Error"
89                height="21" width="21" />
90                <auth:resBundle bundleName="amAuthUI" resourceKey="auth.failed" /></div>
91                <div class="AlrtMsgTxt">
92                <!-- warning message -->
93                <jato:content name="ContentStaticWarning"><br>
94                <jato:getDisplayFieldValue name='StaticTextWarning'
95                defaultValue='' fireDisplayEvents='true' escape='false'/>
96                </jato:content>
97
98                <!-- hyperlink -->
99                <jato:content name="ContentHref">
100                <p><auth:href name="LoginURL"
101                fireDisplayEvents='true'><jato:text
102                name="txtGotoLoginAfterFail" /></auth:href></p>
103                </jato:content>
104                </div>
105                </td></tr></table></div></td>
106                </tr>
107               
108                <tr>
109                <td>&nbsp;</td>
110                </tr>
111            <tr>
112            <td><img src="<%= ServiceURI %>/images/dot.gif"
113            width="1" height="33" alt="" /></td>
114            <td>&nbsp;</td>
115            </tr>
116        </table>
117      </td>
118      <td width="45"><img src="<%= ServiceURI %>/images/dot.gif"
119      width="45" height="245" alt="" /></td>
120    </tr>
121    </table>
122    </td>
123  </table>
124</body>
125
126</jato:useViewBean>
127</html>