1234567891011121314151617181920212223242526272829 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <title>Document</title>
- <link rel="stylesheet" href="style.css" />
- </head>
- <body>
- <div class="all-form">
- <form class="form" action="#">
- Login <br />
- <input type="text" id="log" placeholder="Введите Ваш логин" /> <br />
- Password <br />
- <input type="password" id="pass" placeholder="Введите Ваш пароль" />
- <br />
- <input
- id="btn"
- type="button"
- name="b"
- value="login"
- onclick="buttonClick (this)"
- />
- </form>
- </div>
-
- <script src="js.js"></script>
- </body>
- </html>
|