index.html 785 B

1234567891011121314151617181920212223242526272829
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>Document</title>
  7. <link rel="stylesheet" href="style.css" />
  8. </head>
  9. <body>
  10. <div class="all-form">
  11. <form class="form" action="#">
  12. Login <br />
  13. <input type="text" id="log" placeholder="Введите Ваш логин" /> <br />
  14. Password <br />
  15. <input type="password" id="pass" placeholder="Введите Ваш пароль" />
  16. <br />
  17. <input
  18. id="btn"
  19. type="button"
  20. name="b"
  21. value="login"
  22. onclick="buttonClick (this)"
  23. />
  24. </form>
  25. </div>
  26. <script src="js.js"></script>
  27. </body>
  28. </html>