%@ page import="com.opensymphony.user.User" %>
<%@ page import="com.atlassian.seraph.auth.DefaultAuthenticator" %>
<%@ taglib uri="webwork" prefix="webwork" %>
<%@ taglib uri="webwork" prefix="ui" %>
<%@ taglib uri="sitemesh-page" prefix="page" %>
<%@ taglib uri="jiratags" prefix="jira" %>
|
<%
boolean showLogin = true;
HttpSession httpSession = request.getSession(false);
if (httpSession != null)
{
User remoteUser = (User) httpSession.getAttribute(DefaultAuthenticator.LOGGED_IN_KEY);
showLogin = remoteUser == null;
}
if (showLogin)
{
%>
.
<%
}
%>
|
|