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