목차
- <input type="password"> 예제 - 패스워드 입력
- <input type="password"> 정의
- <input type="password"> 구문
<input type="password"> 예제 - 패스워드 입력
<form action="/action_page.php">
<label for="email">이메일:</label>
<input type="email" id="email" name="email"><br>
<label for="password">패스워드:</label>
<input type="password" id="password" name="password" minlength="8"><br>
<input type="submit" value="확인">
</form>
결과보기
<input type="password"> 정의
패스워드 입력 가능한 INPUT 요소.
1.
2.
모든 브라우저 지원.
3. MDN <input type="password"> 예제보기
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/password
<input type="password"> 구문
<input type="password">