assign id property for form label input elements (#6940)

pull/6980/head
Sarkis Kovlekjian 3 months ago committed by GitHub
parent 8c104aed7f
commit 48d99e2dad
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      src/components/AuthenticationFlow/EmailLoginForm.tsx

@ -59,6 +59,7 @@ export function EmailLoginForm(props: EmailLoginFormProps) {
Email address Email address
</label> </label>
<input <input
id="email"
name="email" name="email"
type="email" type="email"
autoComplete="email" autoComplete="email"
@ -72,6 +73,7 @@ export function EmailLoginForm(props: EmailLoginFormProps) {
Password Password
</label> </label>
<input <input
id="password"
name="password" name="password"
type="password" type="password"
autoComplete="current-password" autoComplete="current-password"

Loading…
Cancel
Save