This commit is contained in:
parent
43181cc1ee
commit
d4270444d4
|
|
@ -15,7 +15,7 @@
|
|||
<div style="width:100%; max-width:900px; margin:0 auto; font-family: 'Noto Sans KR','Malgun Gothic', dotum, sans-serif;">
|
||||
|
||||
|
||||
<div style="padding: 10px;box-sizing:border-box;border-bottom:2px solid #333583;color: #555;font-size: 24px;font-weight: 600;background: url('https://www.ynicte.com/img/common/gnb_logo.gif')no-repeat left center;height: 80px;">
|
||||
<div style="padding: 10px;box-sizing:border-box;border-bottom:2px solid #333583;color: #555;font-size: 24px;font-weight: 600;background: url('https://cte.or.kr/img/common/gnb_logo.gif')no-repeat left center;height: 80px;">
|
||||
<span style="padding-left: 220px;vertical-align: -webkit-baseline-middle;">대기중인 강좌의 수강승인처리가 완료되었습니다.</span>
|
||||
</div>
|
||||
|
||||
|
|
@ -27,7 +27,7 @@
|
|||
">
|
||||
<p>안녕하세요 <span style="color:#2196f3;font-weight:600;">{0}</span>님.</p>
|
||||
<p>영남건설기술교육원에서 대기신청하셨던 <span style="color:#2196f3;font-weight:600;">{1}</span> 의 수강승인이 <span style="color:#2196f3;font-weight:600;">{2}</span>에 완료되었습니다. </p>
|
||||
<p>사이트에 접속하셔서 결제를 완료하시면 최종 접수가 완료됩니다. <a href="https://www.ynicte.com" target="blank">[사이트 바로가기]</a></p>
|
||||
<p>사이트에 접속하셔서 결제를 완료하시면 최종 접수가 완료됩니다. <a href="https://cte.or.kr" target="blank">[사이트 바로가기]</a></p>
|
||||
<p></p>
|
||||
<p style="color: #ff0000;">48시간 내 결제를 완료하시지 않을 경우 자동 취소될 예정입니다.</p>
|
||||
<p>감사합니다.</p>
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@
|
|||
<div style="width:100%; max-width:900px; margin:0 auto; font-family: 'Noto Sans KR','Malgun Gothic', dotum, sans-serif;">
|
||||
|
||||
|
||||
<div style="padding: 10px;box-sizing:border-box;border-bottom:2px solid #333583;color: #555;font-size: 24px;font-weight: 600;background: url('https://www.ynicte.com/img/common/gnb_logo.gif')no-repeat left center;height: 80px;">
|
||||
<div style="padding: 10px;box-sizing:border-box;border-bottom:2px solid #333583;color: #555;font-size: 24px;font-weight: 600;background: url('https://cte.or.kr/img/common/gnb_logo.gif')no-repeat left center;height: 80px;">
|
||||
<span style="padding-left: 140px;vertical-align: -webkit-baseline-middle;"></span>
|
||||
</div>
|
||||
|
||||
|
|
|
|||
Binary file not shown.
|
|
@ -93,7 +93,7 @@ namespace NP.Base.Controllers
|
|||
if (user.usertype == 1)
|
||||
{
|
||||
LogSet(new ActLog() { logtype = 40, logtarget = 51, logdata = "[사용자]" + user.username + " 권한입장", uno = SUserInfo.UserNo, uip = GetUserIP() });
|
||||
return JsonOKObj((string.IsNullOrEmpty(user.subdomain) ? GetConfig("fronturl") : string.Format("https://{0}.ynicte.com", user.subdomain)) + "/Account/AdminEE?un=" + userno + "&eek=" + user.eastereggkey + "&at=" + SUserInfo.UserType + "&an=" + SUserInfo.UserNo);
|
||||
return JsonOKObj((string.IsNullOrEmpty(user.subdomain) ? GetConfig("fronturl") : GetConfig("isstaging") == "1"? string.Format("https://{0}.nptc.kr",user.subdomain) : string.Format("https://{0}.cte.or.kr", user.subdomain)) + "/Account/AdminEE?un=" + userno + "&eek=" + user.eastereggkey + "&at=" + SUserInfo.UserType + "&an=" + SUserInfo.UserNo);
|
||||
}
|
||||
else if (user.usertype == 11)
|
||||
{
|
||||
|
|
|
|||
Binary file not shown.
Binary file not shown.
|
|
@ -86,7 +86,7 @@
|
|||
<h3 style="margin: 30px; text-align: center; font-size: 40px; font-weight: 700;">로그인</h3>
|
||||
<ul class="lgnForm">
|
||||
<li><input type="text" name="uid" id="uid" placeholder="아이디" value="@ViewBag.SavedId" /></li>
|
||||
<li><input type="password" name="upw" id="upw" placeholder="비밀번호 /"></li>
|
||||
<li><input type="password" name="upw" id="upw" placeholder="비밀번호"></li>
|
||||
</ul>
|
||||
<div class="lgnChk">
|
||||
<input type="checkbox" name="issaveid" id="issaveid" @(ViewBag.SavedId == "" ? "" : "checked")>
|
||||
|
|
|
|||
|
|
@ -98,7 +98,7 @@
|
|||
function cblogin() {
|
||||
if (capResult.code == 1000) {
|
||||
if (capResult.obj == -1) {
|
||||
msg("고객사 사용자는 고객사사이트를 이용해주세요.", null, null, null, "location.href='https://" + capResult.msg + ".ynicte.com/Account/Index'");
|
||||
msg("고객사 사용자는 고객사사이트를 이용해주세요.", null, null, null, "location.href='https://" + capResult.msg + ".cte.or.kr/Account/Index'");
|
||||
} else {
|
||||
$("#mform").attr("action", "/");
|
||||
if ('@(Model.ru??"")' != "") {
|
||||
|
|
|
|||
Loading…
Reference in New Issue