회원가입시 입력하는 비밀번호 보이게 하는 방법
본문
회원가입시 비밀번호를 입력하면 점으로만 보이는데요.
회원가입할 때는 입력하는 비밀번호를 보이게 할 수 있는 방법이 궁금합니다.
답변 2
사용하시는 회원쪽 스킨의 resister_form.skin.php 파일의 아래 내용을
<input type="password" name="mb_password" id="reg_mb_password" <?php echo $required ?> class="frm_input <?php echo $required ?>" minlength="3" maxlength="20">
아래처럼 바꾸세요.
<input type="text" name="mb_password" id="reg_mb_password" <?php echo $required ?> class="frm_input <?php echo $required ?>" minlength="3" maxlength="20">
input type=text로 바꿔주시면 됩니다
답변을 작성하시기 전에 로그인 해주세요.