/
spirzen
/
it-code-examples
Обзор
Документация
Войти
/
spirzen
/
it-code-examples
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
examples/javascript/js-501-102-004/main.js
18 строк
507 B
Spirzen
Code migration pack
09 июн 2026, 01:41
09 июн 2026, 01:41
cebc284
Код
Авторство
О чём код?
const formContainer = document.getElementById('form-area'); const newForm = document.createElement('form'); newForm.id = 'dynamicForm'; newForm.action = '/submit'; newForm.method = 'POST'; const label = document.createElement('label'); label.htmlFor = 'emailInput'; label.innerText = 'Email:'; const input = document.createElement('input'); input.type = 'email'; input.id = 'emailInput'; input.name = 'user_email'; input.required = true; newForm.append(label, input); formContainer.appendChild(newForm);