script.js 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. let credentials = {
  2. login: 'admin',
  3. password: 'qwerty',
  4. };
  5. const btnLogin = document.querySelector('.btn'),
  6. modal = document.querySelector('.modal'),
  7. close = document.querySelector('.close'),
  8. textMessageArea = document.querySelector('.modal__title');
  9. let inputLogin = document.querySelector('.form__login'),
  10. inputPassword = document.querySelector('.form__password');
  11. /* inputPassword.addEventListener('change', () => {
  12. inputPassword.value = inputPassword.value.replace(/[\s\S]/g, "*");
  13. }) */
  14. btnLogin.addEventListener('click', (e) => {
  15. e.preventDefault();
  16. if (inputLogin.value === credentials.login && inputPassword.value === credentials.password) {
  17. modal.style.display = 'block';
  18. modal.style.backgroundColor = 'green';
  19. textMessageArea.innerText = 'Поздравляем - вы ввели верные данные';
  20. inputLogin.value = '';
  21. inputPassword.value = '';
  22. } else {
  23. modal.style.display = 'block';
  24. modal.style.backgroundColor = 'red';
  25. textMessageArea.innerText = 'Ошибка ввода пароля или логина. Попробуйте снова';
  26. inputPassword.value = '';
  27. }
  28. });
  29. close.addEventListener('click', () => {
  30. modal.style.display = 'none';
  31. })