19 lines
822 B
Plaintext
19 lines
822 B
Plaintext
<header class="flex header justify-between items-center px-4" data-controller="timer">
|
|
<div class="flex items-center space-x-4">
|
|
<div data-timer-target="output" class="hidden lg:block"></div>
|
|
<button data-action="click->sidebar#toggle" class="block lg:hidden p-2 cursor-pointer">
|
|
<i class="fa-solid fa-bars text-2xl"></i>
|
|
</button>
|
|
</div>
|
|
|
|
<!-- 로그인 정보 -->
|
|
<div class="flex items-center space-x-2">
|
|
<i class="fa-solid fa-user-circle text-3xl text-base-text/60"></i>
|
|
<span class="font-bold text-base-text">홍길동</span><span class="font-normal"> 님</span>
|
|
<%= button_to "로그아웃", root_path,
|
|
method: :post,
|
|
data: { turbo_confirm: "로그아웃 하시겠습니까?" },
|
|
class: "btn bg-danger" %>
|
|
</div>
|
|
</header>
|