mirror of
https://github.com/IRBorisov/ConceptPortal.git
synced 2025-06-26 13:00:39 +03:00
Update ChangePassword.tsx
This commit is contained in:
parent
ceeac08e81
commit
cffcfc88b8
|
@ -43,13 +43,13 @@ export function ChangePassword() {
|
||||||
onChange={event => (setOldPassword(event.target.value))}
|
onChange={event => (setOldPassword(event.target.value))}
|
||||||
/>
|
/>
|
||||||
<TextInput id='new_password'
|
<TextInput id='new_password'
|
||||||
className={input_class}
|
//className={input_class}
|
||||||
label="Введите новый пароль:"
|
label="Введите новый пароль:"
|
||||||
value={new_password}
|
value={new_password}
|
||||||
onChange={event => (setNewPassword(event.target.value), setPasswordEqual(true))}
|
onChange={event => (setNewPassword(event.target.value), setPasswordEqual(true))}
|
||||||
/>
|
/>
|
||||||
<TextInput id='new_password'
|
<TextInput id='new_password'
|
||||||
className={input_class}
|
//className={input_class}
|
||||||
label="Повторите новый пароль:"
|
label="Повторите новый пароль:"
|
||||||
value={new_password_repeat}
|
value={new_password_repeat}
|
||||||
onChange={event => (setNewPasswordRepeat(event.target.value), setPasswordEqual(true))}
|
onChange={event => (setNewPasswordRepeat(event.target.value), setPasswordEqual(true))}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user