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