diff --git a/FO/Views/Account/IndexBase.cshtml b/FO/Views/Account/IndexBase.cshtml
index 9f4ad3b..30e19ed 100644
--- a/FO/Views/Account/IndexBase.cshtml
+++ b/FO/Views/Account/IndexBase.cshtml
@@ -119,7 +119,7 @@
function loginWithKakao() {
Kakao.Auth.login({
success: function (authObj) {
- location.href = "https://www.ynicte.com/Account/KakaoCallback"
+ location.href = "/Account/KakaoCallback"
},
fail: function (err) {
alert("카카오 아이디로 로그인에 실패했습니다.");
@@ -131,7 +131,7 @@
function loginWithGoogle() {
gauth = gapi.auth2.getAuthInstance();
gauth.signIn().then(function () {
- location.href = "https://www.ynicte.com/Account/GoogleCallback"
+ location.href = "/Account/GoogleCallback"
}, function () {
alert("구글 아이디로 로그인에 실패했습니다.");
return;
diff --git a/FO/Views/Account/JoinTSel.cshtml b/FO/Views/Account/JoinTSel.cshtml
index 1be789b..731a94f 100644
--- a/FO/Views/Account/JoinTSel.cshtml
+++ b/FO/Views/Account/JoinTSel.cshtml
@@ -41,7 +41,7 @@
function loginWithKakao() {
Kakao.Auth.login({
success: function (authObj) {
- location.href = "https://www.ynicte.com/Account/Join?jointype=3";
+ location.href = "/Account/Join?jointype=3";
},
fail: function (err) {
alert("카카오 아이디로 회원가입에 실패했습니다.");
@@ -56,7 +56,7 @@
function loginWithGoogle() {
gauth = gapi.auth2.getAuthInstance();
gauth.signIn().then(function () {
- location.href = "https://www.ynicte.com/Account/Join?jointype=1";
+ location.href = "/Account/Join?jointype=1";
});
}
diff --git a/FO/Views/Account/KakaoCallback.cshtml b/FO/Views/Account/KakaoCallback.cshtml
index e61c08b..71873a4 100644
--- a/FO/Views/Account/KakaoCallback.cshtml
+++ b/FO/Views/Account/KakaoCallback.cshtml
@@ -41,7 +41,7 @@
}
}
function goJoin() {
- location.href = "https://www.ynicte.com/Account/Join?jointype=3";
+ location.href = "/Account/Join?jointype=3";
}
function goHome() {
if (capResult.code > 0) {
@@ -49,7 +49,7 @@
}
}
function goIndex() {
- location.href = "https://www.ynicte.com/Account/Index";
+ location.href = "/Account/Index";
}
diff --git a/FO/Views/Account/NaverCallback.cshtml b/FO/Views/Account/NaverCallback.cshtml
index 571d4cf..7dc7e11 100644
--- a/FO/Views/Account/NaverCallback.cshtml
+++ b/FO/Views/Account/NaverCallback.cshtml
@@ -70,7 +70,7 @@
}
}
function goJoin() {
- opener.location.href = "https://www.ynicte.com/Account/Join?jointype=2";
+ opener.location.href = "/Account/Join?jointype=2";
self.close();
}
function goHome() {
@@ -80,7 +80,7 @@
}
}
function goIndex() {
- opener.location.href = "https://www.ynicte.com/Account/Index";
+ opener.location.href = "/Account/Index";
self.close();
}
diff --git a/FO/Views/Account/NaverCallbackJoin.cshtml b/FO/Views/Account/NaverCallbackJoin.cshtml
index db7fe23..223784e 100644
--- a/FO/Views/Account/NaverCallbackJoin.cshtml
+++ b/FO/Views/Account/NaverCallbackJoin.cshtml
@@ -14,7 +14,7 @@
$.when(
naverLogin.init()
).done(function () {
- opener.location.href = "https://www.ynicte.com/Account/Join?jointype=2";
+ opener.location.href = "/Account/Join?jointype=2";
self.close();
});
diff --git a/FO/Views/My/MyInfoCheck.cshtml b/FO/Views/My/MyInfoCheck.cshtml
index b368aca..b261d0b 100644
--- a/FO/Views/My/MyInfoCheck.cshtml
+++ b/FO/Views/My/MyInfoCheck.cshtml
@@ -331,7 +331,7 @@
function loginWithKakao() {
Kakao.Auth.login({
success: function (authObj) {
- location.href = "https://www.ynicte.com/Account/SNSLinkCallback?jointype=3"
+ location.href = "/Account/SNSLinkCallback?jointype=3"
},
fail: function (err) {
alert("카카오 아이디로 로그인에 실패했습니다.");
@@ -343,7 +343,7 @@
function loginWithGoogle() {
gauth = gapi.auth2.getAuthInstance();
gauth.signIn().then(function () {
- location.href = "https://www.ynicte.com/Account/SNSLinkCallback?jointype=1"
+ location.href = "/Account/SNSLinkCallback?jointype=1"
}, function () {
alert("구글 아이디로 로그인에 실패했습니다.");
return;