2010-01-29 22:13:57 +00:00
|
|
|
<%-- $This file is distributed under the terms of the license in /doc/license.txt$ --%>
|
|
|
|
|
|
|
|
<%-- Included in siteAdmin/main.jsp to handle login/logout form and processing --%>
|
|
|
|
|
2010-07-07 19:35:46 +00:00
|
|
|
<%@ page import="edu.cornell.mannlib.vitro.webapp.controller.login.LoginTemplateHelper" %>
|
|
|
|
<%@ page import="edu.cornell.mannlib.vitro.webapp.controller.VitroRequest" %>
|
2010-01-29 22:13:57 +00:00
|
|
|
|
|
|
|
<%
|
2010-07-07 19:35:46 +00:00
|
|
|
String themeDir = new VitroRequest(request).getPortal().getThemeDir().replaceAll("/$", "");
|
2010-01-29 22:13:57 +00:00
|
|
|
%>
|
|
|
|
|
2010-07-07 19:35:46 +00:00
|
|
|
<link rel="stylesheet" type="text/css" href="<%=themeDir%>/css/login.css"/>
|
2010-01-29 22:13:57 +00:00
|
|
|
|
2010-07-07 19:35:46 +00:00
|
|
|
<%= new LoginTemplateHelper(request).showLoginPage(request) %>
|
2010-01-29 22:13:57 +00:00
|
|
|
|