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