<%@ taglib uri="/WEB-INF/jspwiki.tld" prefix="wiki" %> <%@ page import="com.ecyrd.jspwiki.*" %> <%@ page import="com.ecyrd.jspwiki.action.*" %> <%@ page import="com.ecyrd.jspwiki.auth.*" %> <%@ page errorPage="/Error.jsp" %> <%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %> <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %> <%@ taglib uri="/WEB-INF/stripes.tld" prefix="stripes" %> <%@ page import="javax.servlet.jsp.jstl.fmt.*" %> <% String postURL = ""; WikiActionBean ctx = WikiContextFactory.findContext( pageContext ); AuthenticationManager mgr = ctx.getEngine().getAuthenticationManager(); if( mgr.isContainerAuthenticated() ) { postURL = "j_security_check"; } else { postURL = "/Login.action"; } boolean supportsCookieAuthentication = mgr.allowsCookieAuthentication(); %> <%-- Login functionality --%> <%----%>

<% if( supportsCookieAuthentication ) { %> <% } %>
 
<%-- Lost pasword functionality --%>

 
<%----%>
<%-- Register new user profile --%>
LoginHelp