authorization.html 1.1 KB

12345678910111213141516171819202122232425262728
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1" />
  6. <link rel="shortcut icon" type="image/png" href="https://animaproject.s3.amazonaws.com/home/favicon.png" />
  7. <link rel="stylesheet" type="text/css" href="css/style.css" />
  8. </head>
  9. <body>
  10. <div class="container-auth">
  11. <div class="auth-block">
  12. <img class="logo400" src="img/logo_open.svg">
  13. <form action="personal_acc.html" method="">
  14. <input type="text" placeholder="Телефон или e-mail" name="login">
  15. <input type="password" placeholder="Пароль" name="password">
  16. <p id="incorrect">Проверьте корректность логина или пароля</p>
  17. <a id="forgot-pass" href="authorization-fog-pass.html">Забыли пароль?</a>
  18. <div class="buttons">
  19. <a id="register" href="register.html">Регистрация</a>
  20. <button type="submit" class="enter">Войти</button>
  21. </div>
  22. </form>
  23. </div>
  24. </div>
  25. </body>
  26. </html>