home.jsp #1

  • //
  • guest/
  • alan_petersen/
  • P4SelfService/
  • src/
  • main/
  • webapp/
  • WEB-INF/
  • jsp/
  • home.jsp
  • View
  • Commits
  • Open Download .zip Download (688 B)
<%@ 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 &raquo;</a></p>
	    </c:otherwise>
	</c:choose>
	
</div>
# Change User Description Committed
#1 10150 alan_petersen WIP files for my SelfService project...