Преглед на файлове

password length check added

miskson преди 2 години
родител
ревизия
ec550310df
променени са 1 файла, в които са добавени 2 реда и са изтрити 2 реда
  1. 2 2
      src/components/Login/index.js

+ 2 - 2
src/components/Login/index.js

@@ -24,8 +24,8 @@ const RegisterForm = ({ onRegister, regData }) => {
         <input className='forms__input' type="text" placeholder='Login' onChange={(e) => setLogin(e.target.value)} />
         <input className='forms__input' type="password" placeholder='Password' onChange={(e) => setPassword(e.target.value)} />
         <input 
-          className='forms__input' 
-          disabled={!password} type="password" placeholder='Repeat Password *' 
+          className='forms__input'
+          disabled={!password || password.length < 8} type="password" placeholder='Repeat Password *' 
           onChange={(e) => setPassword2(e.target.value)} 
         />
         <small style={{ color: 'red' }}>{password2 && password2 !== password ? 'Passwords do not match' : ''}</small>