diff --git a/src/main/webapp/WEB-INF/jsp/web/user/mberInfoIndex.jsp b/src/main/webapp/WEB-INF/jsp/web/user/mberInfoIndex.jsp
index 97889739..7287f758 100644
--- a/src/main/webapp/WEB-INF/jsp/web/user/mberInfoIndex.jsp
+++ b/src/main/webapp/WEB-INF/jsp/web/user/mberInfoIndex.jsp
@@ -47,6 +47,32 @@ $(document).ready(function(){
subContentSendReserv(); //발송,예약건수
subContentKakaoATSentList();//톡 발송 정보
+
+
+
+
+ $('#showLoginBtn').on('click', function() {
+ $('.security_login').fadeIn(); // 서서히 나타나도록 설정
+ });
+
+
+});
+
+
+// 보안 로그인
+$(document).ready(function(){
+
+ $('#showLoginBtn').on('click', function() {
+ if ($('#securityLogin').is(':visible')) {
+ $('#securityLogin').fadeOut(); // 서서히 사라짐
+ $(this).text('보안 로그인 표시'); // 버튼 텍스트 변경
+ } else {
+ $('#securityLogin').fadeIn(); // 서서히 나타남
+ $(this).text('보안 로그인 숨기기'); // 버튼 텍스트 변경
+ }
+ });
+
+
});
//기간 요일 지정
@@ -374,9 +400,10 @@ function getMberGrdChk() {
이용내역