Blame view

src/main/resources/templates/fragment/header.html 838 Bytes
a6468920   sangkiham   Spring Boot Board...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  <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>