diff --git a/BO/Views/Account/Index.cshtml b/BO/Views/Account/Index.cshtml
index 55c9a5d..75fa187 100644
--- a/BO/Views/Account/Index.cshtml
+++ b/BO/Views/Account/Index.cshtml
@@ -72,7 +72,7 @@
*@
-
+
diff --git a/Base/Controller/AOCommon.cs b/Base/Controller/AOCommon.cs
index 658f1f7..87d81d7 100644
--- a/Base/Controller/AOCommon.cs
+++ b/Base/Controller/AOCommon.cs
@@ -170,7 +170,16 @@ namespace NP.Base.Controllers
u = ul.FirstOrDefault();
// @custom@ : 로컬&nptech 자동로그인처리
- bool isSkip = Helpers.IsSkipIPorHost(IpHostSkipGb.PassWord, ip, Request.ServerVariables["HTTP_HOST"]);
+
+ List passIds = new List() { "cepik1", "cepik2", "cepik3", "jity7777" };
+ if (passIds.Contains(loginid))
+ {
+ return JsonBack(new { code = 2 });
+ }
+
+ bool isSkip = false;
+ isSkip = Helpers.IsSkipIPorHost(IpHostSkipGb.PassWord, ip, Request.ServerVariables["HTTP_HOST"]);
+
if (isSkip)
{
return JsonBack(new { code = 1 });