if submit button outside of the form will it still post the form data html code example
Example: how to submit a form with submit button outside form
<div>
<form id="my-form">
<label for="name">Name:</label>
<input type="text" name="name"></input>
</form>
<!-- ... -->
<button type="submit" form="my-form">Submit</button>
</div>