All inputs in a form live inside a single <fieldset>, but the submit <button> sits outside the <form> and uses the form attribute. Does the button submit those inputs?
<form id="signup">
<fieldset>
<input name="user">
</fieldset>
</form>
<button type="submit" form="signup">Go</button>