Skip to main content

HTML Guide

Bad value “” for attribute “action” on element “form”: Must be non-empty.

The action attribute on a <form> element is not a required attribute, but if specified, must be a valid, non-empty URL. For example:

<form action="register.php">
</form>

Related W3C validator issues