Skip to content

Commit

Permalink
#29 - Feat: 메뉴바에서 출금 신청 메뉴 삭제, 프로필>출금 신청 으로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
ahah525 committed Nov 7, 2022
1 parent c6f1897 commit 5b447ad
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -138,13 +138,6 @@
</span>
</a>

<a href="/withdraw/apply" class="inline-flex" sec:authorize="isAuthenticated()">
<i class="fa-solid fa-sack-dollar"></i>
<span class="ml-[2px] hidden sm:block">
출금 신청
</span>
</a>

<a href="/member/login" class="inline-flex" sec:authorize="isAnonymous()">
<i class="fa-solid fa-arrow-right-to-bracket"></i>
<span class="ml-[2px] hidden sm:block">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<main layout:fragment="main">
<section class="section section-join flex-grow flex flex-col items-center justify-center">

<div class="max-w-md w-full px-2 pt-4">
<div class="max-w-md w-full px-2 pt-4" sec:authorize="isAuthenticated()">
<h1 class="font-bold text-lg">내 프로필</h1>
<div sec:authorize="hasAuthority('AUTHOR')" class="badge badge-lg badge-primary mx-1">작가 회원</div>
<div sec:authorize="hasAuthority('ADMIN')" class="badge badge-lg badge-primary mx-1">관리자 회원</div>
Expand Down Expand Up @@ -48,7 +48,11 @@ <h1 class="font-bold text-lg">내 프로필</h1>
<a href="/member/modify" class="btn btn-secondary btn-outline">기본정보 수정</a>
<a href="/member/modifyPassword" class="btn btn-secondary btn-outline">비밀번호 수정</a>
</div>
<a href="/member/manageWithdrawAccount" class="btn btn-secondary btn-outline">출금계좌 관리</a>

<div class="grid grid-cols-2 mt-2 gap-2">
<a href="/member/manageWithdrawAccount" class="btn btn-secondary btn-outline">출금계좌 관리</a>
<a href="/withdraw/apply" class="btn btn-secondary btn-outline">출금신청</a>
</div>
</div>
</div>

Expand Down

0 comments on commit 5b447ad

Please sign in to comment.