You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Disallow click action on submit buttons within a form.
In a <form>, all <button> elements with a type="submit" attribute (or no type, since buttons default to type="submit") should not have any click action. The action should be on the <form> element instead of directly on the button.
Rule Details
This rule disallows:
Using {{action}} or {{on "click"}} modifiers on submit buttons inside a <form>.
Using the HTML action attribute on submit buttons or <input type="submit"> elements.