|
| 1 | +<%-- |
| 2 | + ~ Password Management Servlets (PWM) |
| 3 | + ~ http://www.pwm-project.org |
| 4 | + ~ |
| 5 | + ~ Copyright (c) 2006-2009 Novell, Inc. |
| 6 | + ~ Copyright (c) 2009-2018 The PWM Project |
| 7 | + ~ |
| 8 | + ~ This program is free software; you can redistribute it and/or modify |
| 9 | + ~ it under the terms of the GNU General Public License as published by |
| 10 | + ~ the Free Software Foundation; either version 2 of the License, or |
| 11 | + ~ (at your option) any later version. |
| 12 | + ~ |
| 13 | + ~ This program is distributed in the hope that it will be useful, |
| 14 | + ~ but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | + ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | + ~ GNU General Public License for more details. |
| 17 | + ~ |
| 18 | + ~ You should have received a copy of the GNU General Public License |
| 19 | + ~ along with this program; if not, write to the Free Software |
| 20 | + ~ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 21 | +--%> |
| 22 | + |
| 23 | +<%@ page import="password.pwm.PwmApplication" %> |
| 24 | +<%@ page import="password.pwm.PwmConstants" %> |
| 25 | +<%@ page import="password.pwm.error.PwmUnrecoverableException" %> |
| 26 | +<%@ page import="password.pwm.http.ContextManager" %> |
| 27 | +<%@ page import="password.pwm.http.PwmRequest" %> |
| 28 | +<%@ page import="password.pwm.http.tag.conditional.PwmIfTest" %> |
| 29 | +<%@ page import="password.pwm.http.tag.value.PwmValue" %> |
| 30 | +<%@ page import="password.pwm.http.PwmRequestFlag" %> |
| 31 | +<%@ page import="password.pwm.http.tag.url.PwmThemeURL" %> |
| 32 | +<%@ page import="password.pwm.http.JspUtility" %> |
| 33 | +<%@ taglib uri="pwm" prefix="pwm" %> |
| 34 | + |
| 35 | +<pwm:if test="<%=PwmIfTest.authenticated%>" negate="true"><title><pwm:display key="Title_TitleBar"/></title></pwm:if> |
| 36 | +<pwm:if test="<%=PwmIfTest.authenticated%>"><title><pwm:display key="Title_TitleBarAuthenticated"/></title></pwm:if> |
| 37 | +<meta http-equiv="content-type" content="text/html;charset=utf-8"/> |
| 38 | +<meta name="robots" content="noindex,nofollow"/> |
| 39 | +<meta id="application-info" name="application-name" content="<%=PwmConstants.PWM_APP_NAME%> Password Self Service" |
| 40 | + <pwm:if test="<%=PwmIfTest.showVersionHeader%>">data-<%=PwmConstants.PWM_APP_NAME.toLowerCase()%>-version="<%=PwmConstants.BUILD_VERSION%>" data-<%=PwmConstants.PWM_APP_NAME.toLowerCase()%>-build="<%=PwmConstants.BUILD_NUMBER%>"</pwm:if> |
| 41 | + data-<%=PwmConstants.PWM_APP_NAME.toLowerCase()%>-instance="<pwm:value name="<%=PwmValue.instanceID%>"/>" |
| 42 | + data-jsp-name="<pwm:value name="<%=PwmValue.currentJspFilename%>"/>" |
| 43 | + data-url-context="<pwm:context/>" |
| 44 | + data-pwmFormID="<pwm:FormID/>" |
| 45 | + data-clientEtag="<pwm:value name="<%=PwmValue.clientETag%>"/>"> |
| 46 | +<meta name="viewport" content="width=device-width, initial-scale = 1.0, user-scalable=no"/> |
| 47 | +<meta http-equiv="X-UA-Compatible" content="IE=10; IE=9; IE=8; IE=7" /> |
| 48 | +<link rel="icon" type="image/png" href="<pwm:url url='/public/resources/favicon.png' addContext="true"/>"/> |
| 49 | +<link rel="stylesheet" type="text/css" href="<pwm:url url='/public/resources/pwm-icons.css' addContext="true"/>"/> |
| 50 | +<link href="<pwm:url url='/public/resources/style.css' addContext="true"/>" rel="stylesheet" type="text/css" media="screen"/> |
| 51 | +<link href="<pwm:url url='/public/resources/style-print.css' addContext="true"/>" rel="stylesheet" type="text/css" media="print"/> |
| 52 | +<link href="<pwm:url url="%THEME_URL%"/>" rel="stylesheet" type="text/css" media="screen"/> |
| 53 | +<pwm:if test="<%=PwmIfTest.requestFlag%>" requestFlag="<%=PwmRequestFlag.NO_MOBILE_CSS%>" negate="true"> |
| 54 | + <link media="only screen and (max-width: 600px)" href="<pwm:url url='/public/resources/mobileStyle.css' addContext="true"/>" type="text/css" rel="stylesheet"/><%-- iphone css --%> |
| 55 | + <link media="only screen and (max-width: 600px)" href="<pwm:url url="%MOBILE_THEME_URL%"/>" type="text/css" rel="stylesheet"/><%-- mobile css --%> |
| 56 | +</pwm:if> |
| 57 | +<link href="<pwm:url url='/public/resources/webjars/dijit/themes/nihilo/nihilo.css' addContext="true"/>" rel="stylesheet" type="text/css"/> |
| 58 | +<link href="<pwm:url url='/public/resources/webjars/dgrid/css/dgrid.css' addContext="true"/>" rel="stylesheet" type="text/css"/> |
| 59 | +<pwm:if test="<%=PwmIfTest.requestFlag%>" requestFlag="<%=PwmRequestFlag.INCLUDE_CONFIG_CSS%>"> |
| 60 | + <link href="<pwm:url url='<%=PwmThemeURL.CONFIG_THEME_URL.token()%>' addContext="true"/>" rel="stylesheet" type="text/css" media="screen"/> |
| 61 | +</pwm:if> |
| 62 | +<pwm:script> |
| 63 | + <script type="text/javascript"> |
| 64 | + var PWM_GLOBAL = PWM_GLOBAL || {}; PWM_GLOBAL['startupFunctions'] = []; |
| 65 | + </script> |
| 66 | +</pwm:script> |
0 commit comments