/
error_404
/
project_2
Обзор
Документация
Войти
/
error_404
/
project_2
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
reg.html
31 строка
1 KB
error_404
upload files
03 сен 2025, 15:15
03 сен 2025, 15:15
b603841
Код
Авторство
О чём код?
<!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="style.css"> </head> <body class = "body2"> <form id="registrationForm" class = "RRform"> <h2>Регистрация</h2> <label for="firstName" class = "RRlabel">Имя:</label> <input type="text" id="firstName" name="firstName" required class = "RRinput"> <label for="lastName" class = "RRlabel">Фамилия:</label> <input type="text" id="lastName" name="lastName" required class = "RRinput"> <label for="email" class = "RRlabel">Адрес электронной почты:</label> <input type="email" id="email" name="email" required class = "RRinput"> <label for="password" class = "RRlabel">Пароль:</label> <input type="password" id="password" name="password" required class = "RRinput"> <label for="birthDate" class = "RRlabel">Дата рождения:</label> <input type="date" id="birthDate" name="birthDate" required class = "RRinput"> <a href="index.html"><button type="submit" class = "RRbutton">Зарегистрироваться</button></a> </form> <script src="script.js"></script> </body> </html>