EndUser.jsp revision 984ea967792540448d05fba2ac6fad5dadf91fd6
2976N/A<%--
2976N/A DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
2976N/A
2976N/A Copyright (c) 2006 Sun Microsystems Inc. All Rights Reserved
2976N/A
2976N/A The contents of this file are subject to the terms
2976N/A of the Common Development and Distribution License
2976N/A (the License). You may not use this file except in
2976N/A compliance with the License.
2976N/A
2976N/A You can obtain a copy of the License at
2976N/A https://opensso.dev.java.net/public/CDDLv1.0.html or
2976N/A opensso/legal/CDDLv1.0.txt
2976N/A See the License for the specific language governing
2976N/A permission and limitations under the License.
2976N/A
2976N/A When distributing Covered Code, include this CDDL
2976N/A Header Notice in each file and include the License file
2976N/A at opensso/legal/CDDLv1.0.txt.
2976N/A If applicable, add the following below the CDDL Header,
2976N/A with the fields enclosed by brackets [] replaced by
2976N/A your own identifying information:
2976N/A "Portions Copyrighted [year] [name of copyright owner]"
2976N/A
2976N/A $Id: EndUser.jsp,v 1.3 2008/06/25 05:44:40 qcheng Exp $
4108N/A
2976N/A--%>
2976N/A
2976N/A
2976N/A
2976N/A
2976N/A<%@ page info="EndUser" language="java" %>
2976N/A<%@taglib uri="/WEB-INF/jato.tld" prefix="jato" %>
2976N/A<%@taglib uri="/WEB-INF/cc.tld" prefix="cc" %>
3009N/A<jato:useViewBean
3009N/A className="com.sun.identity.console.idm.EndUserViewBean"
2976N/A fireChildDisplayEvents="true" >
2976N/A
2976N/A<cc:i18nbundle baseName="amConsole" id="amConsole"
2976N/A locale="<%=((com.sun.identity.console.base.AMViewBeanBase)viewBean).getUserLocale()%>"/>
2976N/A
2976N/A<cc:header name="hdrCommon" pageTitle="webconsole.title" bundleID="amConsole" copyrightYear="2004" fireDisplayEvents="true">
2976N/A
2976N/A<cc:form name="EndUser" method="post">
2976N/A<script language="javascript">
2976N/A function confirmLogout() {
2976N/A return confirm("<cc:text name="txtLogout" defaultValue="masthead.logoutMessage" bundleID="amConsole"/>");
2976N/A }
2976N/A</script>
2976N/A<cc:primarymasthead name="mhCommon" bundleID="amConsole" logoutOnClick="return confirmLogout();" locale="<%=((com.sun.identity.console.base.AMViewBeanBase)viewBean).getUserLocale()%>"/>
4261N/A
2976N/A<table border="0" cellpadding="10" cellspacing="0" width="100%">
2976N/A <tr>
2976N/A <td>
2976N/A <cc:alertinline name="ialertCommon" bundleID="amConsole" />
2976N/A </td>
2976N/A </tr>
2976N/A</table>
2976N/A
2976N/A<%-- PAGE CONTENT --------------------------------------------------------- --%>
2976N/A<cc:pagetitle name="pgtitleTwoBtns" bundleID="amConsole" pageTitleText="page.title.entities.create" showPageTitleSeparator="true" viewMenuLabel="" pageTitleHelpMessage="" showPageButtonsTop="true" showPageButtonsBottom="false" />
2976N/A
2976N/A<cc:propertysheet name="propertyAttributes" bundleID="amConsole" showJumpLinks="false"/>
2976N/A
2976N/A</cc:form>
2976N/A
2976N/A</cc:header>
2976N/A</jato:useViewBean>
4243N/A