Skip to content

Commit

Permalink
ユーザー名またはメールアドレスに文言変更 (#388)
Browse files Browse the repository at this point in the history
## 変更内容
メールアドレスでもログインできるようになったので、文言変更

@coderabbitai: ignore
  • Loading branch information
takecchi authored Mar 25, 2024
1 parent 7c7723b commit 1ff1837
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/(plain)/(guest)/login/_components/LoginForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export default function LoginForm() {
autoComplete="username"
type="text"
onChange={(e) => setUsername(e.target.value)}
placeholder="username"
placeholder="ユーザー名またはメールアドレス"
/>
<OutlinedInput
sx={{ width: '100%' }}
Expand All @@ -67,7 +67,7 @@ export default function LoginForm() {
type={showPassword ? 'text' : 'password'}
autoComplete="current-password"
onChange={(e) => setPassword(e.target.value)}
placeholder="password"
placeholder="パスワード"
endAdornment={
<InputAdornment position="end">
<IconButton
Expand Down

0 comments on commit 1ff1837

Please sign in to comment.