I have three different forms on my webpage. One for editing, one for deleting, and one for going back.
<form th:method="get" th:action="..." th:object="${...}" class="row">
<input type="submit" value="Edit" class="btn btn-primary col my-2">
<form th:method="delete" th:action="..." th:object="${...}" class="col">
<input type="submit" value="Delete" class="btn btn-secondary my-2">
</form>
<form th:method="put" th:action="..." th:object="${...}" class="col">
<input type="submit" value="Back" class="btn btn-primary my-2">
</form>
I would like to line them up horizontally using Bootstrap. How can I achieve this?