Skip to content

Commit

Permalink
[Closes #123] Set type email on fields collecting an email address (#126
Browse files Browse the repository at this point in the history
)
  • Loading branch information
francisli authored Sep 18, 2024
1 parent bb7336d commit 2187380
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions client/src/pages/auth/login/LoginForm.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ export function LoginForm({
<Container size="25rem">
<TextInput
className={classes.email}
type="email"
label="Email"
placeholder="user@email.com"
value={email}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ export function PasswordForgotForm({
<TextInput
disabled={isLoading || formState == 2}
name="email"
type="email"
label="Email"
placeholder="user@email.com"
value={email}
Expand Down
1 change: 1 addition & 0 deletions client/src/pages/auth/register/RegisterForm.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ export function RegisterForm({
<TextInput
disabled={isLoading}
name="email"
type="email"
label="Email"
placeholder="Email"
value={user.email}
Expand Down

0 comments on commit 2187380

Please sign in to comment.