kjb-safedb 로 PasswordEncoer 변경 / 가입자 수정 화면에서 수정버튼 항상 활성화
This commit is contained in:
@@ -66,16 +66,18 @@
|
||||
|
||||
// 현재 상태가 탈퇴인 경우
|
||||
if (status === STATUS.REMOVED) {
|
||||
$("#btn_modify").show().prop('disabled', true);
|
||||
$("#btn_modify").show().prop('disabled', false);
|
||||
return;
|
||||
}
|
||||
|
||||
// 일반 상태
|
||||
$("#btn_modify").show().prop('disabled', !isUnmasked);
|
||||
/* $("#btn_modify").show().prop('disabled', !isUnmasked);
|
||||
if (isUnmasked) {
|
||||
$("input, select").prop('disabled', false);
|
||||
updateOrgControl();
|
||||
}
|
||||
} */
|
||||
// 25.09.29 - 항상 해제
|
||||
$("#btn_modify").show().prop('disabled', false);
|
||||
}
|
||||
|
||||
function init() {
|
||||
@@ -261,7 +263,7 @@
|
||||
}
|
||||
|
||||
const fullLoginId = id + "@" + domain;
|
||||
const emailPattern = /^[A-Za-z][A-Za-z0-9._-]*@[A-Za-z0-9][-A-Za-z0-9.]+\.[A-Za-z]{2,}$/;
|
||||
const emailPattern = /^[A-Za-z0-9._-]*@[A-Za-z0-9][-A-Za-z0-9.]+\.[A-Za-z]{2,}$/;
|
||||
if (!emailPattern.test(fullLoginId)) {
|
||||
alert(fullLoginId + " 은 올바른 이메일 형식이 아닙니다.");
|
||||
return;
|
||||
@@ -558,9 +560,11 @@
|
||||
</th>
|
||||
<td colspan="3">
|
||||
<div class="input-group" style="width: 50%;">
|
||||
<input type="text" id="loginId" style="width:10%; display: inline-block;" maxlength="30" onkeyup="validateEmailId(this)"/>
|
||||
<input type="text" id="loginId" style="width:10%; display: inline-block; ime-mode: disable;" maxlength="30" onkeyup="validateEmailId(this)"
|
||||
lang="en" />
|
||||
<span style="padding: 0 10px;">@</span>
|
||||
<input type="text" id="domain" style="width:20%; display: inline-block;" maxlength="50" onkeyup="validateDomainInput(this)"/>
|
||||
<input type="text" id="domain" style="width:20%; display: inline-block; ime-mode: disable;" maxlength="50" onkeyup="validateDomainInput(this)"
|
||||
lang="en" />
|
||||
<input type="hidden" name="loginId"/>
|
||||
<button type="button" class="smallBtn cssbtn" id="btn_check_id" level="R" status="NEW"
|
||||
style="margin-left: 10px; display: inline-block;">
|
||||
|
||||
Reference in New Issue
Block a user