index.html 1.2 KB

1234567891011121314151617181920212223242526
  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. <link rel="stylesheet" href="./assets/styles/style.css">
  7. <link rel="stylesheet" href="./assets/styles/style_LA.css">
  8. <title>Авторизация</title>
  9. <script src="assets/json/LogIn.js"></script>
  10. </head>
  11. <body>
  12. <div class="big_con" style="height: 100vh; display: flex; justify-content: center; align-items: center;">
  13. <div class="block_auth">
  14. <h2 style="color: black; padding: 0;">АВТОРИЗАЦИЯ</h2>
  15. <input type="text" id="email" placeholder="Email" class="enter">
  16. <input type="password" id="password" placeholder="Пароль" class="enter">
  17. <button class="orange" onclick="LogIn()">
  18. <span class="p14">Войти</span>
  19. </button>
  20. <p class="p14" style="color: #777;">Еще не с нами? <a href="registration.html"><u>Зарегистрируйтесь!</u></a></p> <!-- Добавили стиль для цвета -->
  21. <span class="close" onclick="window.location.href='mainPage.html'">&times;</span>
  22. </div>
  23. </div>
  24. </body>
  25. </html>