모바일 : 로그인 사용자명 출력 등 문구 수정
This commit is contained in:
parent
116e5b2b9d
commit
141f541420
@ -75,7 +75,17 @@ $(document).ready(function() {
|
|||||||
|
|
||||||
<div class="mo-nav-wrap">
|
<div class="mo-nav-wrap">
|
||||||
<div class="login_box">
|
<div class="login_box">
|
||||||
|
|
||||||
|
<sec:authorize access="not isAuthenticated()">
|
||||||
<h2>로그인하여 <br />더 많은 정보를 확인해 보세요</h2>
|
<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">
|
<div class="btns_box">
|
||||||
<sec:authorize access="not isAuthenticated()">
|
<sec:authorize access="not isAuthenticated()">
|
||||||
<button type="button" class="btn_login login-btn" onclick='fn_layerPopWithClass("/login/loginFormPopup.do", "pop-login")'>로그인</button>
|
<button type="button" class="btn_login login-btn" onclick='fn_layerPopWithClass("/login/loginFormPopup.do", "pop-login")'>로그인</button>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user