Skip to content

Commit

Permalink
change delete links to form posts
Browse files Browse the repository at this point in the history
  • Loading branch information
jsimone committed Mar 13, 2012
1 parent 6740dcd commit ca45ada
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/webapp/WEB-INF/jsp/people.jsp
Expand Up @@ -62,7 +62,7 @@
<c:forEach items="${peopleList}" var="person">
<tr>
<td>${person.lastName}, ${person.firstName}</td>
<td><a href="delete/${person.id}">delete</a></td>
<td><form action="delete/${person.id}" method="post"><input type="submit" class="btn btn-danger btn-mini" value="Delete"/></form></td>
</tr>
</c:forEach>
</tbody>
Expand Down

0 comments on commit ca45ada

Please sign in to comment.