I attempted to create a simple dropdown menu using Bootstrap, but unfortunately it's not working correctly. Here is the code I used:
<ul class="nav navbar-nav">
<li>
<a href="#">Text</a>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Dropdown <span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="logout.php">Logout</a></li>
</ul>
</li>
</ul>
Can anyone provide insight into why this implementation is not functioning as intended? Thank you.