채택완료

회원가입시 입력하는 비밀번호 보이게 하는 방법

2020-11-04 (수) 16:31:36 2,157

회원가입시 비밀번호를 입력하면 점으로만 보이는데요.

회원가입할 때는 입력하는 비밀번호를 보이게 할 수 있는 방법이 궁금합니다.

|

답변 2개 / 댓글 2개

채택된 답변
+20 포인트

사용하시는 회원쪽 스킨의 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개

감사합니다.^^
2020-11-04 (수) 16:39:14

input type=text로 바꿔주시면 됩니다

답변에 대한 댓글 1개

답변 감사합니다.

답변을 작성하려면 로그인이 필요합니다.