formnovalidateSubmit
formnovalidateSubmit is an HTML attribute that can be added to a submit button or input element within a form. Its purpose is to disable the browser's default form validation behavior for that specific submission. When a submit element has the formnovalidateSubmit attribute, the form will be submitted to the server regardless of whether the input fields meet their validation requirements.
This attribute is useful in scenarios where custom validation logic is implemented on the client-side or server-side,
To use formnovalidateSubmit, you simply add it as a boolean attribute to the submit button or input
<button type="submit" formnovalidateSubmit>Submit without validation</button>
<input type="submit" value="Save Draft" formnovalidateSubmit>
It's important to note that formnovalidateSubmit only bypasses the browser's built-in HTML5 validation. If server-side validation