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