fix: correct autocomplete attributes to enable password manager autofill

This commit is contained in:
Prince EKPINSE 2025-11-12 00:08:36 +01:00
parent 7ac5913c86
commit 678a2ccdf3

View file

@ -44,7 +44,7 @@ export function LoginForm() {
name="username"
rules={{ required: formatMessage(labels.required) }}
>
<TextField autoComplete="off" />
<TextField autoComplete="username" />
</FormField>
<FormField
label={formatMessage(labels.password)}
@ -52,7 +52,7 @@ export function LoginForm() {
name="password"
rules={{ required: formatMessage(labels.required) }}
>
<PasswordField />
<PasswordField autoComplete="current-password" />
</FormField>
<FormButtons>
<FormSubmitButton