index.html 875 B

123456789101112131415161718192021222324252627
  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>Login</title>
  8. <link rel="stylesheet" href="style.css">
  9. </head>
  10. <body>
  11. <div class="container">
  12. <form action="#">
  13. <h4>Внесите данные </h4>
  14. <input required placeholder="логин" name="login" type="text" class="form__login">
  15. <input required placeholder="пароль" name="password" type="text" class="form__password">
  16. <button class="btn">Login</button>
  17. </form>
  18. <div class="modal">
  19. <div data-close class="close">&times;</div>
  20. <span class="modal__title"></span>
  21. </div>
  22. </div>
  23. <script src="script.js"></script>
  24. </body>
  25. </html>