refactor: login ID/PW placeholder 수정
This commit is contained in:
parent
fcd5f9e142
commit
b7188cf5bc
@ -165,7 +165,7 @@ export default function Login() {
|
||||
<input
|
||||
type="text"
|
||||
className="login-frame"
|
||||
placeholder="Input Frame ID"
|
||||
placeholder="ID"
|
||||
value={account.loginId}
|
||||
onKeyDown={(e) => handleKeyDown(e)}
|
||||
onChange={(e) => setAccount({ loginId: e.target.value })}
|
||||
@ -180,7 +180,7 @@ export default function Login() {
|
||||
<input
|
||||
type={`${pwShow ? 'text' : 'password'}`}
|
||||
className="login-frame"
|
||||
placeholder="Input Frame PW"
|
||||
placeholder="Password"
|
||||
value={account.pwd}
|
||||
onKeyDown={(e) => handleKeyDown(e)}
|
||||
onChange={(e) => setAccount({ pwd: e.target.value })}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user