회원가입시 비밀번호를 입력하면 점으로만 보이는데요.
회원가입할 때는 입력하는 비밀번호를 보이게 할 수 있는 방법이 궁금합니다.
답변 2개 / 댓글 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">
답변에 대한 댓글 1개
input type=text로 바꿔주시면 됩니다
답변에 대한 댓글 1개
답변을 작성하려면 로그인이 필요합니다.