I've encountered an issue while implementing a Bootwatch template with my MVC 5 project. Specifically, my NavBar Menu seems to be malfunctioning.
1.- My "LogOff" button isn't working as expected. When calling the script in my _LoginPartial, it doesn't execute and the button remains non-responsive.
Below is my _LoginPartial.cshtml:
//code snippet here
Here is my _Layout.cshtml:
//code snippet here
My AccountController.cs:
//code snippet here
2.- Additionally, I've noticed a discrepancy in the color of my NavBar. The elements on the right side have a different color compared to those on the left side. When inspecting my console, I found that changing the color of one element affects others unintentionally.
Is there a way to specifically target the NavBar element for color modification?
https://i.sstatic.net/Hna1d.png
This is my second time working with MVC 5 and my first time implementing a template. Any insights on what might be causing these issues?