Does submit button applies to whole form, or just to latest input element? For example:
<!DOCTYPE html>
<html>
<body>
<form>
First name:<input type="text" name ="firstname"><br>
Last name:<input type="text" name ="lastname"><br>
User name:<input type="text" name="username"><br>
Password:<input type="password" name="pwd"><br>
<p>Gender:</p>
<input type="radio" name="sex" value="male">male<br>
<input type="radio" name="sex" value="female">female<br>
<input type="submit" value="Submit">
</form>
<body>
<html>
So, after pushing submit button, will whole form be passed to server or just the last input element before sumit input type?