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