refactor: 로그인/비밀번호 변경 페이지 문구 및 디자인 수정
This commit is contained in:
parent
9d20e34d39
commit
2bb4d26496
@ -185,7 +185,7 @@ export default function Login() {
|
||||
onKeyDown={(e) => handleKeyDown(e)}
|
||||
onChange={(e) => setAccount({ pwd: e.target.value })}
|
||||
/>
|
||||
<button className={`login-icon ${pwShow ? 'act' : ''}`} onClick={() => setPwShow(!pwShow)}>
|
||||
<button className={`login-icon ${pwShow ? '' : 'act'}`} onClick={() => setPwShow(!pwShow)}>
|
||||
<i className="show-icon"></i>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
@ -108,15 +108,15 @@ export default function PwResetForm() {
|
||||
<input
|
||||
type={`${pwShow01 ? 'text' : 'password'}`}
|
||||
className="login-frame"
|
||||
placeholder="●●●●"
|
||||
placeholder="新しいパスワードを入力してください。"
|
||||
onChange={(e) => setPwd01(e.target.value)}
|
||||
/>
|
||||
<button className={`login-icon ${pwShow01 ? 'act' : ''}`} onClick={() => setPwShow01(!pwShow01)}>
|
||||
<button className={`login-icon ${pwShow01 ? '' : 'act'}`} onClick={() => setPwShow01(!pwShow01)}>
|
||||
<i className="show-icon"></i>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
{/* <div className="data-input-guide">※半角10文字以内</div> */}
|
||||
<div className="data-input-guide">※英文大文字·英文小文字·数字を含む8桁以上入力。</div>
|
||||
</div>
|
||||
<div className="data-input-form-bx">
|
||||
<div className="data-input-form-tit">
|
||||
@ -127,15 +127,14 @@ export default function PwResetForm() {
|
||||
<input
|
||||
type={`${pwShow02 ? 'text' : 'password'}`}
|
||||
className="login-frame"
|
||||
placeholder="●●●●"
|
||||
placeholder="同じパスワードをもう一度入力してください。"
|
||||
onChange={(e) => setPwd02(e.target.value)}
|
||||
/>
|
||||
<button className={`login-icon ${pwShow02 ? 'act' : ''}`} onClick={() => setPwShow02(!pwShow02)}>
|
||||
<button className={`login-icon ${pwShow02 ? '' : 'act'}`} onClick={() => setPwShow02(!pwShow02)}>
|
||||
<i className="show-icon"></i>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
{/* <div className="data-input-guide">※半角10文字以内</div> */}
|
||||
</div>
|
||||
</div>
|
||||
<div className="btn-flex-wrap">
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user