9 lines
288 B
Plaintext
9 lines
288 B
Plaintext
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
|
|
<%@ taglib prefix="c" uri="jakarta.tags.core" %>
|
|
|
|
<c:if test="${not empty sessionScope.user}">
|
|
<form action="${pageContext.request.contextPath}/logout" method="post">
|
|
<button type="submit">Logout</button>
|
|
</form>
|
|
</c:if>
|