<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<div class="starter-template">
	<h1>Perforce Self-Service</h1>
	<p class="lead">
		This site can be used to manage your Perforce account.
	</p>	
	<c:choose>
	    <c:when test="${isAuthenticated}">
	        Welcome, ${helper.userInfo.fullName}! Select a function from the menu above.
	    </c:when>
	    <c:otherwise>
	        Please log in to access the self-service portal. If you do not have a Perforce account, you will
	        first need to request one.
	        <p><a href="${context}/register.htm" class="btn btn-primary btn-lg" role="button">Request Account »</a></p>
	    </c:otherwise>
	</c:choose>
	
</div>