use emby-input/Input instead of InputElement

This commit is contained in:
David Stensland
2024-02-25 15:45:18 -08:00
committed by Bill Thornton
parent 1c296630c7
commit cbb3658331
5 changed files with 51 additions and 119 deletions
@@ -6,7 +6,7 @@ import confirm from '../../confirm/confirm';
import loading from '../../loading/loading';
import toast from '../../toast/toast';
import ButtonElement from '../../../elements/ButtonElement';
import InputElement from '../../../elements/InputElement';
import Input from '../../../elements/emby-input/Input';
type IProps = {
userId: string | null;
@@ -158,27 +158,27 @@ const UserPasswordForm: FunctionComponent<IProps> = ({ userId }: IProps) => {
>
<div className='detailSection'>
<div id='fldCurrentPassword' className='inputContainer hide'>
<InputElement
<Input
type='password'
id='txtCurrentPassword'
label='LabelCurrentPassword'
options={'autoComplete="off"'}
label={globalize.translate('LabelCurrentPassword')}
autoComplete='off'
/>
</div>
<div className='inputContainer'>
<InputElement
<Input
type='password'
id='txtNewPassword'
label='LabelNewPassword'
options={'autoComplete="off"'}
label={globalize.translate('LabelNewPassword')}
autoComplete='off'
/>
</div>
<div className='inputContainer'>
<InputElement
<Input
type='password'
id='txtNewPasswordConfirm'
label='LabelNewPasswordConfirm'
options={'autoComplete="off"'}
label={globalize.translate('LabelNewPasswordConfirm')}
autoComplete='off'
/>
</div>
<br />