모바일 : 로그인 사용자명 출력 등 문구 수정

This commit is contained in:
KNKIM 2021-11-26 10:03:53 +09:00
parent 116e5b2b9d
commit 141f541420

View File

@ -75,7 +75,17 @@ $(document).ready(function() {
<div class="mo-nav-wrap">
<div class="login_box">
<h2>로그인하여 <br />더 많은 정보를 확인해 보세요</h2>
<sec:authorize access="not isAuthenticated()">
<h2>로그인하여 <br />더 많은 정보를 확인해 보세요</h2>
</sec:authorize>
<sec:authorize access="isAuthenticated()">
<sec:authentication property="principal.name" var="userName" />
<h2>안녕하세요,<br />${userName}님!</h2>
</sec:authorize>
<div class="btns_box">
<sec:authorize access="not isAuthenticated()">
<button type="button" class="btn_login login-btn" onclick='fn_layerPopWithClass("/login/loginFormPopup.do", "pop-login")'>로그인</button>