예제
1 2 3 4 5 6 7 8 9 10 11 12 13 | <!DOCTYPE html> < html > < head > < meta charset = "utf-8" > </ head > < body > < form action = "login.php" autocomplete = "on" > < input type = "text" name = "id" placeholder = "id를 입력해주세요." autofocus> < input type = "password" name = "password" autocomplete = "off" placeholder = "비밀번호를 입력해주세요." > < input type = "submit" > </ form > </ body > </ html > |