|
|
@@ -30,7 +30,7 @@
|
|
|
<div class="form_field">
|
|
|
<label class="input_label sr-only">기존 비밀번호를 입력해주세요.</label>
|
|
|
<div class="ui_col_12">
|
|
|
- <input type="password" nid="orgPasswd" name="orgPasswd" placeholder="기존 비밀번호를 입력해주세요." class="form_control" minlength="8" maxlength="20" required="required" data-valid-name="기존 비밀번호"/>
|
|
|
+ <input type="password" id="orgPasswd" name="orgPasswd" placeholder="기존 비밀번호를 입력해주세요." class="form_control" minlength="8" maxlength="20" required="required" data-valid-name="기존 비밀번호"/>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="form_field">
|
|
|
@@ -264,6 +264,31 @@
|
|
|
}
|
|
|
};
|
|
|
|
|
|
+ var fnDataInit = function () {
|
|
|
+ const $firstFailed = $('#firstFailed');
|
|
|
+ const $secondFailed = $('#secondFailed');
|
|
|
+ const $thirdFailed = $('#thirdFailed');
|
|
|
+ const $avlPwd = $('#avlPwd');
|
|
|
+ const $misPwd = $('#misPwd');
|
|
|
+ const $avlConPwd = $('#avlConPwd');
|
|
|
+
|
|
|
+ const gray = 'c_gray';
|
|
|
+ $firstFailed.attr('class', gray);
|
|
|
+ $secondFailed.attr('class', gray);
|
|
|
+ $thirdFailed.attr('class', gray);
|
|
|
+ $avlPwd.hide();
|
|
|
+ $misPwd.hide();
|
|
|
+ $avlConPwd.hide();
|
|
|
+
|
|
|
+ checkPwd = '';
|
|
|
+ checkConfirmPwd = '';
|
|
|
+ $('.form_control').val('');
|
|
|
+ }
|
|
|
+
|
|
|
+ $(document).ready(function() {
|
|
|
+ fnDataInit();
|
|
|
+ });
|
|
|
+
|
|
|
|
|
|
/*]]>*/
|
|
|
</script>
|