%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"
import="java.util.*"
import="com.tootsville.user.*"
import="org.starhope.appius.user.*"
%><%
//---------- Universal Declarations: Place this on every page.
/**
* Parent/User object. On myAccount this should be declared User and on parent this should be declared Parent
*/
Person sessionUser=null;
/**
* Error message list
*/
HashMap err = new HashMap ();
%><%
//----------- Error handling: Place this on every page.
//----------- These errors are read and displayed by Header.jsp
if (err.size() > 0) {
session.setAttribute("sError", err);
pageContext.forward ("/membership/");
}
%>
Toot Registration