main.js 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. //Первая часть ДЗ
  2. // let tomato = +prompt("Сколько помидор?");
  3. // let cucumber = +prompt("Сколько огурцов?");
  4. // let onion = +prompt("Сколько лука?");
  5. // let apple = +prompt("Сколько яблок?");
  6. // let orange = +prompt("Сколько апельсин?");
  7. // let kiwi = +prompt("Сколько киви?");
  8. // let vegitables = tomato + cucumber + onion;
  9. // alert(`Всего ${vegitables} овощей`);
  10. // let fruits = apple + orange + kiwi;
  11. // alert(`Всего ${fruits} фруктов`);
  12. // alert(`Всего ${vegitables + fruits} фруктов и овощей вместе`);
  13. //Вторая часть ДЗ
  14. var credentials = {
  15. login: 'admin',
  16. password: 'qwerty',
  17. };
  18. let log = document.getElementById('login');
  19. let pswd = document.getElementById('password');
  20. let btn = document.getElementById('btn');
  21. btn.onclick = function() {
  22. let col;
  23. let text;
  24. if (log.value == credentials.login && pswd.value == credentials.password) {
  25. col = 'green';
  26. text = 'Congratulations';
  27. }
  28. else {
  29. col = 'red';
  30. text = 'Error';
  31. }
  32. let div = document.createElement('div');
  33. btn.insertAdjacentElement('afterend', div);
  34. div.style.background = col;
  35. div.innerText = text;
  36. }