update input types to email

This commit is contained in:
Mags
2023-07-20 10:15:24 -04:00
parent a81442d936
commit 65dccf5d85
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"