/
Qb
/
Test
Обзор
Документация
Войти
/
Qb
/
Test
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
index.html
40 строк
2 KB
Qb
upload files
07 окт 2025, 15:21
07 окт 2025, 15:21
129e0c4
Код
Авторство
О чём код?
<!DOCTYPE html> <html lang="ru"> <head> <meta charset="UTF-8"> <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link href="https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@100..900&display=swap" rel="stylesheet"> <link rel="stylesheet" href="style.css"> <title>Маравия Личный Кабинет</title> </head> <body> <div class="entrance"> <div class="entrance__inner"> <div class="entrance__content"> <h1 class="entrance__title">Вход</h1> <p class="entrance__text">В личный кабинет ГК Maravia</p> <form class="form" action="/" method="post"> <div class="form__group"> <div class="name">*Логин</div> <input class="input" name="login" placeholder="Иванов Иван Иванович" required> </div> <div class="form__group"> <div class="name">*Пароль</div> <input class="input" name="password" type="password" placeholder="xxxxxxxxxx" required> </div> <div class="form__group"> <div class="necessarily">* Обязательные поля для заполнения</div> </div> <div class="form__group form__group--big"> <div class="policy">Нажимая кнопку «Войти» вы соглашаетесь с <a class="policy__link" href="#">политикой обработки персональных данных</a>.</div> </div> <button class="btn" type="submit">Войти</button> </form> </div> </div> </div> </body> </html>