poc/poc/admin/src/main/resources/templates/layout/gnb.html

16 lines
439 B
HTML

<!DOCTYPE html>
<html lang="ko" xmlns:th="http://www.thymeleaf.org">
<body>
<th:block th:fragment="gnb">
<div>
<h1>
<img th:src="@{/images/logo_secui.svg}" alt="SECUI logo">
<span>- Partner Inventory System</span>
</h1>
<div class="user_info">
<a href="#none">madzoneviper</a>
<a th:href="@{/logout}">로그아웃</a>
</div>
</div>
</th:block>
</body>