mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Merge pull request #2518 from MagsMagnoli/fix/email-input-type
Update email inputs to type email
This commit is contained in:
commit
98c5fb21a5
3 changed files with 3 additions and 3 deletions
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in a new issue