header.html 838 Bytes
<html lagn="ko" 
      xmlns:th="http://www.thymeleaf.org">
       
    <!--headerFragment 선언-->
    <div th:fragment="headerFragment" style="height: 4em;text-align: center;">
    	<div class="shadow-sm p-3 mb-5 bg-body rounded" style="height: 3.4rem;">
			<div style="text-align: left; float: left;">
			  <button type="button" class="btn btn-outline-dark"><a th:href="@{/board/boardList?boardName=maintenance}">유지보수</a></button>
			  <button type="button" class="btn btn-outline-dark"><a th:href="@{/board/boardList?boardName=etc}">기타</a></button>
			</div>
			<div style="text-align: right; float: right;">
			    <form class="d-flex" th:action="@{/logout}">
			      <button class="btn btn-outline-success" type="submit">로그아웃</button>
			    </form>
			</div>
		</div>
    </div>
    
</html>