From 409196bb4a584b01b22869e6108b37415e7e4ef5 Mon Sep 17 00:00:00 2001 From: Irfan762 Date: Wed, 25 Feb 2026 22:49:38 +0530 Subject: [PATCH] fix(accessibility): correct label-input id mismatch in NewPasswordForm --- client/modules/User/components/NewPasswordForm.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/client/modules/User/components/NewPasswordForm.tsx b/client/modules/User/components/NewPasswordForm.tsx index 9d08f678c5..ac3a5fc4b4 100644 --- a/client/modules/User/components/NewPasswordForm.tsx +++ b/client/modules/User/components/NewPasswordForm.tsx @@ -34,7 +34,7 @@ export function NewPasswordForm(props: { resetPasswordToken: string }) { className="form__input" aria-label={t('NewPasswordForm.TitleARIA')} type="password" - id="Password" + id="password" autoComplete="new-password" {...field.input} /> @@ -47,14 +47,14 @@ export function NewPasswordForm(props: { resetPasswordToken: string }) { {(field) => (

-