/
MashkoA
/
web-nodejs
Обзор
Документация
Войти
/
MashkoA
/
web-nodejs
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
public/lab7/task2/index.html
80 строк
3 KB
umarovazizjohn
l7
09 апр 2026, 10:12
09 апр 2026, 10:12
48a32d1
Код
Авторство
О чём код?
<!DOCTYPE html> <html lang="ru"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Лабораторная 7, задание 2. Машко Александр Андреевич, группа ПИ2401</title> <link rel="stylesheet" href="styles.css"> </head> <body> <h1>Задание 2</h1> <div class="content-container"> <form id="studentForm" class="student-form"> <div class="form-section"> <div class="input-group"> <label class="form-label"> Фамилия: <input type="text" name="lastName" class="form-input" required> </label> <label class="form-label"> Имя: <input type="text" name="firstName" class="form-input" required> </label> <label class="form-label"> Отчество: <input type="text" name="middleName" class="form-input"> </label> </div> </div> <div class="form-section"> <h3>Дополнительная информация</h3> <div class="radio-group"> <span class="radio-label">Пол:</span> <label class="radio-option"> <input type="radio" name="gender" value="male" required> <span class="radio-custom"></span> Мужской </label> <label class="radio-option"> <input type="radio" name="gender" value="female"> <span class="radio-custom"></span> Женский </label> </div> <label class="form-label"> Факультет: <select name="faculty" class="form-select" required> <option value="">Выберите факультет</option> </select> </label> </div> <div class="form-section"> <h3>Проектная деятельность</h3> <label class="checkbox-option"> <input type="checkbox" name="projectParticipation"> <span class="checkbox-custom"></span> Участие в проекте </label> <div id="projectNameContainer" class="hidden"> <label class="form-label"> Наименование проекта: <input type="text" name="projectName" class="form-input"> </label> </div> </div> <div class="form-actions"> <button type="button" id="saveBtn" class="btn btn-save">Сохранить</button> <button type="button" id="tableBtn" class="btn btn-submit">Посмотреть таблицу</button> </div> </form> </div> <script src="script.js" defer></script> </body> </html>