Merge pull request 'stage 추가' (#22) from feature/add-stage into master
All checks were successful
Main-Build / build-and-push (push) Successful in 28s

Reviewed-on: #22
Reviewed-by: saydev <gomdobi@sayinfo.co.kr>
This commit is contained in:
2025-12-10 07:49:37 +00:00
2 changed files with 15 additions and 2 deletions

View File

@@ -55,7 +55,7 @@ Globals.OrgNm=\uc138\uc774\uc815\ubcf4\uae30\uc220
Globals.OrgCode=8188 Globals.OrgCode=8188
#Globals.AccessIp=10 #Globals.AccessIp=10
Globals.SiteTitle=\uc138\uc774\uc815\ubcf4\uae30\uc220 Help-desk (\uac1c\ubc1c) Globals.SiteTitle=\uc138\uc774\uc815\ubcf4\uae30\uc220 Help-desk (\uc2a4\ud14c\uc774\uc9d5)
#Globals.MobileStartPage=/mobile/intro.do #Globals.MobileStartPage=/mobile/intro.do
Globals.MobileStartPage=/login.do Globals.MobileStartPage=/login.do
PushUrl=http://www.sejong.go.kr/sotong PushUrl=http://www.sejong.go.kr/sotong

View File

@@ -16,7 +16,20 @@
<script src="js/common/common.js"></script> <script src="js/common/common.js"></script>
<script src="js/common/login.js"></script> <script src="js/common/login.js"></script>
<base target="_self" /> <base target="_self" />
<title><%=MainGlobals.SITE_TITLE%></title> <title><%= MainGlobals.SITE_TITLE %></title>
<%
String siteTitle = MainGlobals.SITE_TITLE;
if ("세이정보기술 Help-desk (스테이징)".equals(siteTitle)
|| "세이정보기술 Help-desk (개발)".equals(siteTitle)
|| "세이정보기술 Help-desk (로컬)".equals(siteTitle)) {
%>
<h1><%= siteTitle %></h1>
<%
}
%>
<link rel="icon" type="image/x-icon" href="${pageContext.request.contextPath}/Favicon.ico?v=20251209" /> <link rel="icon" type="image/x-icon" href="${pageContext.request.contextPath}/Favicon.ico?v=20251209" />
<style> <style>
.login_wrap_body{ background:url(${pageContext.request.contextPath}/images/admin/login_bg.gif) repeat left top; font-family:"맑은 고딕",Malgun Gothic,AppleGothic,sans-serif,"돋움", Dotum; } .login_wrap_body{ background:url(${pageContext.request.contextPath}/images/admin/login_bg.gif) repeat left top; font-family:"맑은 고딕",Malgun Gothic,AppleGothic,sans-serif,"돋움", Dotum; }