diff --git a/packages/react-core/src/components/LoginPage/LoginForm.tsx b/packages/react-core/src/components/LoginPage/LoginForm.tsx index 980422f585f..821f6b6ef0e 100644 --- a/packages/react-core/src/components/LoginPage/LoginForm.tsx +++ b/packages/react-core/src/components/LoginPage/LoginForm.tsx @@ -28,6 +28,8 @@ export interface LoginFormProps extends Omit, ' onChangeUsername?: (event: React.FormEvent, value: string) => void; /** Flag indicating if the username is valid */ isValidUsername?: boolean; + /** Flag indicating if password is required */ + isPasswordRequired?: boolean; /** Label for the password input field */ passwordLabel?: string; /** Value for the password */ @@ -66,6 +68,7 @@ export const LoginForm: React.FunctionComponent = ({ usernameValue = '', onChangeUsername = () => undefined as any, isValidUsername = true, + isPasswordRequired = true, passwordLabel = 'Password', passwordValue = '', onChangePassword = () => undefined as any, @@ -85,7 +88,7 @@ export const LoginForm: React.FunctionComponent = ({ const passwordInput = ( = ({ onChange={onChangeUsername} /> - + {isShowPasswordEnabled && ( {passwordInput} diff --git a/packages/react-core/src/components/LoginPage/__tests__/LoginForm.test.tsx b/packages/react-core/src/components/LoginPage/__tests__/LoginForm.test.tsx index 302b3d919d1..999187cf363 100644 --- a/packages/react-core/src/components/LoginPage/__tests__/LoginForm.test.tsx +++ b/packages/react-core/src/components/LoginPage/__tests__/LoginForm.test.tsx @@ -48,4 +48,16 @@ describe('LoginForm', () => { const { asFragment } = render(); expect(asFragment()).toMatchSnapshot(); }); + + test('Renders LoginForm with password field required by default', () => { + render(); + const passwordField = screen.getByLabelText(/password/i); + expect(passwordField).toHaveAttribute('required'); + }); + + test('Renders LoginForm with password field not required when isPasswordRequired set to false', () => { + render(); + const passwordField = screen.getByLabelText(/password/i); + expect(passwordField).not.toHaveAttribute('required'); + }); }); diff --git a/packages/react-core/src/components/LoginPage/examples/LoginPage.md b/packages/react-core/src/components/LoginPage/examples/LoginPage.md index 7443ce7e6e8..50a24f6be00 100644 --- a/packages/react-core/src/components/LoginPage/examples/LoginPage.md +++ b/packages/react-core/src/components/LoginPage/examples/LoginPage.md @@ -31,6 +31,7 @@ import GitlabIcon from '@patternfly/react-icons/dist/esm/icons/gitlab-icon'; ### Basic +By default, a login page requires users to enter both a username and a password into their respective fields. The username must always be a required field, but you can make the password optional by passing the `isPasswordRequired` property to the ``. ```ts file='./LoginPageBasic.tsx' isFullscreen ```