BARON-SSO 로그인 연동

This commit is contained in:
root
2026-07-27 17:23:52 +09:00
parent bf5e694571
commit ac5823234e
44 changed files with 1804 additions and 695 deletions
@@ -556,19 +556,6 @@ foreach ($partials as $p) {
</html>
<script>
$(function(){
// footer family site toggle
$('.family_btn').click(function(e){
e.stopPropagation();
$('.family_list, .family_btn').toggleClass('family_on');
});
$(document).click(function(e){
if(!$(e.target).closest('.family_wrap').length){
$('.family_list, .family_btn').removeClass('family_on');
}
});
});
// 회원 탈퇴
function member_leave() {
if (confirm("회원에서 탈퇴 하시겠습니까?"))
+1 -14
View File
@@ -307,19 +307,6 @@ function getQueryString(name){
if (writer) writer.addEventListener('change', submitForm);
})();
// Footer family site toggle
$(function(){
$('.family_btn').on('click', function(e){
e.stopPropagation();
$('.family_list, .family_btn').toggleClass('family_on');
});
$(document).on('click', function(e){
if(!$(e.target).closest('.family_wrap').length){
$('.family_list, .family_btn').removeClass('family_on');
}
});
});
// Cookie helpers (기존 로직 유지)
function deleteCookie(name){
document.cookie = name+"=; expires=Thu, 01 Jan 1970 00:00:00 UTC; path=/eng;";
@@ -437,7 +424,7 @@ function updateHeaderMenu(){
$('#my_join2').html(
isLoggedIn && isAdmin
? "<a href='/eng/adm/index.php' target='_blank'>관리페이지</a>"
: "<a href='/eng/index.php'>Home</a>"
: "<a href='javascript:mypage03();'>My Page</a>"
);
} catch(e){ console.error(e); }
}
+1 -1
View File
@@ -430,7 +430,7 @@ function updateHeaderMenu(){
$('#my_join2').html(
isLoggedIn && isAdmin
? "<a href='/eng/adm/index.php' target='_blank'>관리페이지</a>"
: "<a href='/eng/index.php'>Home</a>"
: "<a href='javascript:mypage03();'>My Page</a>"
);
} catch(e){ console.error(e); }
}
-13
View File
@@ -363,19 +363,6 @@
<!-- 상단(헤더) 스크립트 구문 -->
<script>
$(function(){
// footer family site toggle
$('.family_btn').click(function(e){
e.stopPropagation();
$('.family_list, .family_btn').toggleClass('family_on');
});
$(document).click(function(e){
if(!$(e.target).closest('.family_wrap').length){
$('.family_list, .family_btn').removeClass('family_on');
}
});
});
// 회원 탈퇴
function member_leave() {
if (confirm("회원에서 탈퇴 하시겠습니까?"))