<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<c:choose>
	<c:when test="${helper.requireAccountApproval}">
		<h3>Account Request Sent</h3>
		<p class="lead">
		You will be informed when your account approval is processed.
		</p>
	</c:when>
	<c:otherwise>
		<h3>Account Created</h3>
		<p class="lead">
		You can now log into the Perforce server. You may need to request group membership
		before you can do much on the server.
		</p>
	</c:otherwise>
</c:choose>