In order to support moving our password field pattern to show/hide instead of two fields for password and password confirmation, we need a new PasswordField component in UIC.

The component should wrap <Field> include the checkbox to manage its own state. It renders a standard password type input followed by the checkbox, that toggles the input between type="password" and type="text". To match other UIC patterns, we will likely need to pass in the show/hide password string(s).
In order to support moving our password field pattern to show/hide instead of two fields for password and password confirmation, we need a new
PasswordFieldcomponent in UIC.The component should wrap
<Field>include the checkbox to manage its own state. It renders a standard password type input followed by the checkbox, that toggles the input betweentype="password"andtype="text". To match other UIC patterns, we will likely need to pass in the show/hide password string(s).