login_denied.jsp revision 678fa69e5b163e6445a26c1859e464dbcd8cb953
0N/A<%--
579N/A DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
0N/A
0N/A Copyright (c) 2005 Sun Microsystems Inc. All Rights Reserved
0N/A
0N/A The contents of this file are subject to the terms
0N/A of the Common Development and Distribution License
0N/A (the License). You may not use this file except in
0N/A compliance with the License.
0N/A
0N/A You can obtain a copy of the License at
0N/A https://opensso.dev.java.net/public/CDDLv1.0.html or
0N/A opensso/legal/CDDLv1.0.txt
0N/A See the License for the specific language governing
0N/A permission and limitations under the License.
0N/A
0N/A When distributing Covered Code, include this CDDL
0N/A Header Notice in each file and include the License file
0N/A at opensso/legal/CDDLv1.0.txt.
0N/A If applicable, add the following below the CDDL Header,
0N/A with the fields enclosed by brackets [] replaced by
0N/A your own identifying information:
0N/A "Portions Copyrighted [year] [name of copyright owner]"
0N/A
0N/A $Id: login_denied.jsp,v 1.5 2008/08/15 01:05:31 veiming Exp $
0N/A
0N/A--%>
0N/A<%--
0N/A Portions Copyrighted 2012 ForgeRock Inc
0N/A--%>
0N/A<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
0N/A
481N/A<html xmlns="http://www.w3.org/1999/xhtml">
481N/A <%@page info="User has no profile in this organization" language="java"%>
0N/A <%@taglib uri="/WEB-INF/jato.tld" prefix="jato"%>
0N/A <%@taglib uri="/WEB-INF/auth.tld" prefix="auth"%>
481N/A <jato:useViewBean className="com.sun.identity.authentication.distUI.LoginViewBean">
481N/A <%@ page contentType="text/html" %>
481N/A <head>
481N/A <title><jato:text name="htmlTitle_UserProfileNotFound" /></title>
481N/A <%
481N/A String ServiceURI = (String) viewBean.getDisplayFieldValue(viewBean.SERVICE_URI);
481N/A %>
481N/A <link href="<%= ServiceURI%>/css/new_style.css" rel="stylesheet" type="text/css" />
481N/A <!--[if IE 9]> <link href="<%= ServiceURI %>/css/ie9.css" rel="stylesheet" type="text/css"> <![endif]-->
481N/A <!--[if lte IE 7]> <link href="<%= ServiceURI %>/css/ie7.css" rel="stylesheet" type="text/css"> <![endif]-->
481N/A </head>
0N/A <body>
0N/A <div class="container_12">
0N/A <div class="grid_4 suffix_8">
0N/A <a class="logo" href="<%= ServiceURI%>"></a>
0N/A </div>
0N/A <div class="box box-spaced clear-float">
0N/A <div class="grid_3">
0N/A <div class="product-logo"></div>
0N/A </div>
0N/A <div class="grid_9">
0N/A <div class="box-content clear-float">
0N/A <div class="message">
0N/A <span class="icon error"></span>
0N/A <h3><auth:resBundle bundleName="amAuthUI" resourceKey="userhasnoprofile.org" /></h3>
1166N/A <p><auth:resBundle bundleName="amAuthUI" resourceKey="contactadmin" /></p>
0N/A <jato:content name="ContentHref">
0N/A <p><auth:href name="LoginURL" fireDisplayEvents='true'><jato:text name="txtGotoLoginAfterFail" /></auth:href></p>
1166N/A </jato:content>
1166N/A </div>
1166N/A </div>
1166N/A </div>
1166N/A </div>
1166N/A <div class="footer alt-color">
1166N/A <div class="grid_6 suffix_3">
1166N/A <p><auth:resBundle bundleName="amAuthUI" resourceKey="copyright.notice" /></p>
1166N/A </div>
0N/A </div>
0N/A </div>
0N/A </body>
0N/A </jato:useViewBean>
0N/A</html>
0N/A