index.html 667 B

12345678910111213141516171819202122
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Form</title>
  8. </head>
  9. <body>
  10. <form class="box" action="index.html" method="POST"></form>
  11. <h1>Hello</h1>
  12. <input type="text" placeholder="Enter your login" id="name">
  13. <input type="text" placeholder="Введите пароль" id="pass">
  14. <input type="submit" name="" value="Login" id="login">
  15. <hr>
  16. <div>Выводим сюда:
  17. <span id='result'></span>
  18. </div>
  19. <script src="scriptBB1.js"></script>
  20. </body>
  21. </html>