i have two form as following
<form id="form1" action="/Account/form1">
 <input type="text" name="baar" />
 <input type="text" name="baar1" />
<div>
 this is first form 
</div>
// here second form starts 
<form id="form2" action="/Account/form2">
 <input type="text" name="foo" />
 <input type="text" name="foo1" />
 <button id="btnclick" type="button">Submit</button>
</form>
 <button type="submit">Submit</button>
</form>
now i want that when i click #btnclick inside form2 then my form2 submit with all inputs in form2 , but not form1 .
 
    