Advertisement
Guest User

Untitled

a guest
Sep 18th, 2014
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1.  
  2. <ul class="dropdown-menu">
  3. <c:choose>
  4. <c:when test="${user == null}">
  5. <li><a href="${pageContext.request.contextPath}/CustomerLoginServlet">Customer</a></li>
  6. <li><a href="${pageContext.request.contextPath}/AdminLoginServlet">Admin</a></li>
  7. </c:when>
  8. <c:otherwise>
  9. <li><a href="${pageContext.request.contextPath}/${user.role}LoginServlet?logoff=true">Logout</a></li>
  10. </c:otherwise>
  11. </c:choose>
  12.  
  13.  
  14.  
  15. <c:if test="${user == null}"> <li class="divider"/> <li><a href="${pageContext.request.contextPath}/RegisterServlet">Register</a></li> </c:if>
  16. </ul>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement