index.html 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. /*Задание для синего пояса выполнено с участием черного))) в след файле - задание выполнено мной..*/
  2. <head>
  3. </head>
  4. <body>
  5. <div>
  6. <input id="login" type="text" size="20" placeholder="login" />
  7. <input id="pass" type="text" size="20" placeholder="password" />
  8. <button onclick="checkCredentialsBtnClick()" >
  9. Check Credentials
  10. </button>
  11. <br><br>
  12. <div id="result" style="display: inline-block;color:white;"></div>
  13. <script>
  14. var credentials = {
  15. login: 'admin',
  16. password: 'qwerty',
  17. };
  18. function checkCredentialsBtnClick(){
  19. login = document.getElementById('login').value;
  20. pass = document.getElementById('pass').value;
  21. result = document.getElementById('result');
  22. if (credentials['login'] == login && credentials['password'] == pass){
  23. result.style.backgroundColor = 'green';
  24. result.innerHTML = "OK!"
  25. }
  26. else{
  27. result.style.backgroundColor = 'red';
  28. result.innerHTML = "Wrong credentials!"
  29. }
  30. }
  31. </script>
  32. </div>
  33. </body>