-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
Description
Краткое описание
requires each <form>
element to include submit button
Плохие примеры
<form>
<label>
Text field: <input type="text">
</label>
</form>
Хорошие примеры
<form>
<label>
Text field: <input type="text">
</label>
<button type="submit">Submit</button>
</form>
<form id="my-form">
...
</form>
<button form="my-form" type="submit">Submit</button>
Поле со свободным описанием.
No response