update input types to email

This commit is contained in:
Mags 2023-07-20 10:15:24 -04:00
parent a81442d936
commit 65dccf5d85
No known key found for this signature in database
GPG key ID: D6A7BBF64A704927
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"