Некорректно передаются параметры из jsp в сервлет
В первом случае не принимается параметр по имени "varTerm", передаваемый с помощью js в id="createBut"
<form method="post" action="/сreate">
<div>
<p><input type="text" style="font-size: 1.2rem" name="duration"></p>
<table id="tb1" border="1">
<tr>
<th>Заголовок</th>
<th></th>
</tr>
<c:forEach items="${vars}" var="d">
<tr>
<td>${d.varId}</td>
<td><input type="checkbox" value="${d.varName}"></td>
</tr>
</c:forEach>
</table>
</div>
<p>
<button id="butdisc" onclick="createTerm()">Создать</button>
</p>
</form>
<form id="createBut" method="post" action="/сreate">
<input type="hidden" name="varTerm">
</form>
Во втором случае "varTerm" передается верно, но и параметр "duration" приобретает такое же знаечение. Как решить данную проблему?
<form method="post" id="createBut" action="/сreate">
<div>
<p><input type="text" style="font-size: 1.2rem" name="duration"></p>
<table id="tb1" border="1">
<tr>
<th>Заголовок</th>
<th></th>
</tr>
<c:forEach items="${vars}" var="d">
<tr>
<td>${d.varId}</td>
<td><input type="checkbox" value="${d.varName}"></td>
</tr>
</c:forEach>
</table>
</div>
<p>
<button id="butdisc" onclick="createTerm()">Создать</button>
</p>
<input type="hidden" name="varTerm">
</form>