input 필드의 초기값을 정의한다.
<input type="password"
name="p"
value="pdefault"><br>
<input type="password"
name="p"
value="pdefault"
readonly><br>
필드를 비활성화 하는 기능이다.
<input type="password"
name="p"
value="pdefault"
readonly
disabled><br>
입력값을 입력해야 제출할 수 있다. 속성명=속성값일 수 있다.(required=required) 이 때, 속성명만 입력해도 속성값이 알아서 처리한다.
<input type="password"
name="p"
value="pdefault"
readonly
disabled
required><br>
필드에 간단한 설명을 지정한다.
<input type="password"
name="p"
required
placeholder="비밀번호를 입력하세요"><br>
필드에 이전에 입력된 값을을 보여준다. 민감한 정보에는 쓰지 않는다.
<input type="password"
name="p"
value="pdefault"
readonly
disabled
required
autocomlete="off"><br>