Merge pull request #2518 from MagsMagnoli/fix/email-input-type

Update email inputs to type email
This commit is contained in:
Jackson Harper 2023-07-24 12:42:32 +08:00 committed by GitHub
commit 98c5fb21a5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -49,7 +49,7 @@ export function EmailForgotPassword(): JSX.Element {
<FormLabel>Email</FormLabel>
<BorderedFormInput
key="email"
type="text"
type="email"
name="email"
value={email}
placeholder="Email"

View file

@ -52,7 +52,7 @@ export function EmailLogin(): JSX.Element {
<FormLabel>Email</FormLabel>
<BorderedFormInput
key="email"
type="text"
type="email"
name="email"
value={email}
placeholder="Email"

View file

@ -71,7 +71,7 @@ export function EmailSignup(): JSX.Element {
<FormLabel className="required">Email</FormLabel>
<BorderedFormInput
key="email"
type="text"
type="email"
name="email"
defaultValue={email}
placeholder="Email"