I am using Bootstrap 5 for my navigation bar. The problem is that the dropdown item (Login) for the user icon is not showing. Here's my code:
<button class="btn dropdown-toggle" type="button" id="userDropdown" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<i class="fa-solid fa-user text-white fs-5"></i>
</button>
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="userDropdown">
<a class="dropdown-item" href="#">Login</a>
</div>