Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions apps/web/src/app/sign-up/email/EmailSignUpForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -96,10 +96,13 @@ const EmailSignUpForm = () => {
이메일
</Label>
<Input
id="email"
name="email"
variant="gray"
placeholder="ID@example.com"
type="email"
autoComplete="email"
spellCheck={false}
value={email}
onChange={handleEmailChange}
/>
Expand All @@ -112,6 +115,8 @@ const EmailSignUpForm = () => {
</Label>
<div className="relative">
<Input
id="password"
name="password"
variant="gray"
placeholder="비밀번호를 입력해주세요"
type={passwordsVisible ? "text" : "password"}
Expand All @@ -121,6 +126,7 @@ const EmailSignUpForm = () => {
/>
<button
type="button"
aria-label={passwordsVisible ? "비밀번호 숨기기" : "비밀번호 보기"}
onClick={togglePasswordVisibility}
className="absolute right-3.5 top-1/2 -translate-y-1/2"
>
Expand All @@ -135,6 +141,8 @@ const EmailSignUpForm = () => {
</Label>
<div className="relative">
<Input
id="passwordConfirm"
name="passwordConfirm"
variant="gray"
placeholder="비밀번호를 다시 입력해주세요"
type={passwordsVisible ? "text" : "password"}
Expand All @@ -144,6 +152,7 @@ const EmailSignUpForm = () => {
/>
<button
type="button"
aria-label={passwordsVisible ? "비밀번호 확인 숨기기" : "비밀번호 확인 보기"}
onClick={togglePasswordVisibility}
className="absolute right-3.5 top-1/2 -translate-y-1/2"
>
Expand Down
Loading