/
NeonBite
/
sample-sass
Обзор
Документация
Войти
/
NeonBite
/
sample-sass
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
index.html
25 строк
844 B
Winnie-the-Pooh2019
initial commit
25 сен 2025, 11:54
25 сен 2025, 11:54
159123d
Код
Авторство
О чём код?
<!DOCTYPE html> <html lang="ru"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Форма авторизации</title> <link rel="stylesheet" href="dist/styles/main.css"> </head> <body> <div class="auth-form"> <h1>Вход</h1> <form action="#" method="POST"> <div class="form-group"> <label for="email">Email</label> <input type="email" id="email" name="email" placeholder="Введите email"> </div> <div class="form-group"> <label for="password">Пароль</label> <input type="password" id="password" name="password" placeholder="Введите пароль"> </div> <button type="submit" class="button">Войти</button> </form> </div> </body> </html>