w

회원정보 수정 할때 비밀번호 필드는 숨겨 놓기

· 2년 전 · 1655

테마/register_form.skin.php 파일을 수정

토글로 체크 하면 나오도록 보여주는 소스입니다.

 

[code]

<?php

if ($is_member)

{

?>

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script>

// function by welcome - @

$(function() {
  $("#pass_question").on("click",function() {
    $(".answer").toggle(this.checked);
  });
});

</script>

<style>

.answer { display:none }

</style>

 

<tr class="question">
  <label for="pass_question">비밀번호 변경하시겠습니까?</label>
  <input id="pass_question" type="checkbox" name="pass_question" value="1" />
  <span class="item-text">Yes</span>
</tr>


<tr class="answer">
    <th scope="row"><label for="reg_mb_password">비밀번호<strong class="sound_only">필수</strong></label></th>
            <td><input type="password" name="mb_password" id="reg_mb_password" <?php echo $required ?> class="frm_input <?php echo $required ?>" minlength="3" maxlength="20"></td>
        </tr>
<tr class="answer">
    <th scope="row"><label for="reg_mb_password_re">비밀번호 확인<strong class="sound_only">필수</strong></label></th>
    <td><input type="password" name="mb_password_re" id="reg_mb_password_re" <?php echo $required ?> class="frm_input <?php echo $required ?>" minlength="3" maxlength="20"></td>
</tr>

 

<?php

}

else

{

?>

        <tr>
            <th scope="row"><label for="reg_mb_password">비밀번호<strong class="sound_only">필수</strong></label></th>
            <td><input type="password" name="mb_password" id="reg_mb_password" <?php echo $required ?> class="frm_input <?php echo $required ?>" minlength="3" maxlength="20"></td>
        </tr>
        <tr>
            <th scope="row"><label for="reg_mb_password_re">비밀번호 확인<strong class="sound_only">필수</strong></label></th>
            <td><input type="password" name="mb_password_re" id="reg_mb_password_re" <?php echo $required ?> class="frm_input <?php echo $required ?>" minlength="3" maxlength="20"></td>
        </tr>

<?php

}

?>

[/code]

|
댓글을 작성하시려면 로그인이 필요합니다.

그누보드5 팁자료실

+
제목 글쓴이 날짜 조회
2년 전 조회 3,140
2년 전 조회 2,286
2년 전 조회 1,773
2년 전 조회 2,302
2년 전 조회 2,191
2년 전 조회 1,663
2년 전 조회 1,601
2년 전 조회 2,618
2년 전 조회 1,906
2년 전 조회 1,449
2년 전 조회 3,268
2년 전 조회 1,429
2년 전 조회 1,959
2년 전 조회 1,956
2년 전 조회 1,656
2년 전 조회 1,457
2년 전 조회 2,576
2년 전 조회 2,199
2년 전 조회 1,926
2년 전 조회 1,728
2년 전 조회 2,216
2년 전 조회 2,609
2년 전 조회 2,062
2년 전 조회 2,393
2년 전 조회 2,300
2년 전 조회 2,873
2년 전 조회 2,026
2년 전 조회 3,619
2년 전 조회 2,996
2년 전 조회 1,944