Skip to content

Правило: req-submit-button #40

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
balesniy opened this issue Jul 10, 2023 · 0 comments · May be fixed by #90
Open

Правило: req-submit-button #40

balesniy opened this issue Jul 10, 2023 · 0 comments · May be fixed by #90
Assignees

Comments

@balesniy
Copy link
Contributor

Краткое описание

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants