λ°μν
Intro
μλ νμΈμ. Input tagλ₯Ό μ΄μ©νμ¬ μ¬μ©μμ password μ λ ₯μ λ°μλ΄λ μ½λμμ μλμ κ°μ μ€λ₯κ° λ°μνμ΅λλ€.
Input elements should have autocomplete attributes (suggested: "current-password")
μ°Έκ³ λ‘ μ¬μ©ν μ½λλ λ€μκ³Ό κ°μ΅λλ€.
<input type="password" name="password">
Why?
Autocomplete μ ν΅ν΄ μΉ κ°λ°μλ μμ νλ κ°μ μ λ ₯ν λ μ¬μ©μ μμ΄μ νΈκ° μλμΌλ‘ μ§μν΄μΌ νλ κΆνμ μ§μ ν μ μμΌλ©°, νλμ μμλλ μ 보 μ νμ λν λΈλΌμ°μ μλ΄λ μ 곡νλ€κ³ ν©λλ€. μ¦ μλμμ± κΈ°λ₯μ΄λΌκ³ λ³Ό μ μμ΅λλ€ :)
How to solve the problem
autocomplete μμ±μ λ£μ΄μ€ κ²½μ° ν΄λΉ μ€λ₯κ° μ¬λΌμ§κ² λ©λλ€ .
<input type="password" name="password" autocomplete="on">
https://stackoverflow.com/questions/54970352/input-elements-should-have-autocomplete-attributes
λ°μν