새소식

HTML, CSS

HTML - 비밀번호 input 설정(가리기)

  • -

비밀번호 input 설정

  • input type을 password로 지정 해준다.

기본 input 이미지

<input class="text-black" type="password" name="loginPw" placeholder="비밀번호">

변경 후 이미지

<input class="text-black" type="password" name="loginPw" placeholder="비밀번호">

전체 html

<div class="overflow-x-auto">
    <form action="../member/doLogin" method="post">
        <input class="text-black" type="text" name="loginId" placeholder="아이디">
        <input class="text-black" type="password" name="loginPw" placeholder="비밀번호">
        <button onclick="submit" class="btn">로그인</button>
        <button class="btn" onclick="history.back();">뒤로가기</button>
    </form>
</div>    
반응형
Contents

포스팅 주소를 복사했습니다

이 글이 도움이 되었다면 공감 부탁드립니다.