|
|
@@ -18,11 +18,11 @@
|
|
|
* 1.0 2021.04.26 jsshin 최초 작성
|
|
|
*******************************************************************************
|
|
|
-->
|
|
|
+<body>
|
|
|
+<th:block layout:fragment="content">
|
|
|
<style>
|
|
|
.hide{display:none}
|
|
|
</style>
|
|
|
-<body>
|
|
|
-<th:block layout:fragment="content">
|
|
|
<main class="container my">
|
|
|
<section class="content my_page">
|
|
|
<div class="inner">
|
|
|
@@ -39,10 +39,10 @@
|
|
|
<!-- 사용불가 비밀번호일경우 -->
|
|
|
<p class="mt10">
|
|
|
<span id="firstFailed" class="c_gray">
|
|
|
- <i class="ico ico_check black mr5"></i>영문(대/소문자), 숫자, 특수문자 중 2가지 이상 조합(8~20자)<br/>
|
|
|
+ <i class="ico ico_check gray mr5"></i>영문(대/소문자), 숫자, 특수문자 중 2가지 이상 조합(8~20자)<br/>
|
|
|
</span>
|
|
|
<span id="secondFailed" class="c_gray">
|
|
|
- <i class="ico ico_check red mr5"></i>4개이상 연속되거나 동일한 문자/숫자 제외<br/>
|
|
|
+ <i class="ico ico_check gray mr5"></i>4개이상 연속되거나 동일한 문자/숫자 제외<br/>
|
|
|
</span>
|
|
|
<span id="thirdFailed" class="c_gray">
|
|
|
<i class="ico ico_check gray mr5"></i>아이디 제외
|
|
|
@@ -89,7 +89,7 @@
|
|
|
</button>
|
|
|
</div>
|
|
|
<div>
|
|
|
- <button type="button" id="btnSavePassword" class="btn btn_dark btn_block" disabled="disabled">
|
|
|
+ <button type="button" id="btnSavePassword" class="btn btn_dark btn_block">
|
|
|
<span>확인</span>
|
|
|
</button>
|
|
|
</div>
|
|
|
@@ -184,11 +184,11 @@
|
|
|
if (sameConfirmPwd) {
|
|
|
$misPwd.hide();
|
|
|
$avlConPwd.show();
|
|
|
- $btnSavePassword.attr('disabled', false);
|
|
|
+ //$btnSavePassword.attr('disabled', false);
|
|
|
} else {
|
|
|
$avlConPwd.hide();
|
|
|
$misPwd.show();
|
|
|
- $btnSavePassword.attr('disabled', true);
|
|
|
+ //$btnSavePassword.attr('disabled', true);
|
|
|
}
|
|
|
};
|
|
|
|