login_success_menu.jsp 880 B

123456789101112131415161718192021222324
  1. <%--
  2. Created by IntelliJ IDEA.
  3. User: x'b'w
  4. Date: 2021/6/20
  5. Time: 22:02
  6. To change this template use File | Settings | File Templates.
  7. --%>
  8. <%@ page contentType="text/html;charset=UTF-8" language="java" %>
  9. <div>
  10. <span>欢迎<span class="um_span">${sessionScope.user.username}</span>光临</span>
  11. <%-- <c:when test="${empty sessionScope.orderId}">--%>
  12. <%-- <a href="pages/order/order1.jsp">我的订单</a>--%>
  13. <%-- </c:when>--%>
  14. <%-- <c:otherwise>--%>
  15. <%-- <a href="pages/order/order.jsp">我的订单</a>--%>
  16. <%-- </c:otherwise>--%>
  17. <%-- <c:if test="">--%>
  18. <%-- </c:if>--%>
  19. <%-- <c:if test="${not empty sessionScope.orderId}">--%>
  20. <%-- </c:if>--%>
  21. <a href="pages/order/order.jsp">我的订单</a>
  22. <a href="userServlet?action=logout">注销</a>&nbsp;&nbsp
  23. <a href="index.jsp">返回</a>
  24. </div>