My current bootstrap dropdown list has been causing some issues, specifically with the 'Log out' link not working properly. The 'Logout' button seems to be functioning correctly, but for some reason the other one is not. Can someone please take a look and help me fix the 'Log out' link?
<div class="logout-dropdown-list float-right">
<button class="btn btn-secondary btn-md dropdown-toggle" type="button" data-toggle="dropdown"
aria-haspopup="true" aria-expanded="false></button>
<div class="dropdown-menu">
<p align="right">Logged as <span sec:authentication="name"></span></p>
<div class="dropdown-divider"></div>
<form action="#" class="float-right" th:action="@{/logout}" method="POST>
<input type="submit" value="Logout">
</form>
<a class="dropdown-item" href="#" th:action="@{/logout}" method="POST>Log out</a>
</div>
</div>