Advertisement
Guest User

Untitled

a guest
Jun 13th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.57 KB | None | 0 0
  1. <nav class="navbar navbar-inverse navbar-fixed-top">
  2. <div class="container">
  3. <div class="navbar-header">
  4. <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
  5. <span class="icon-bar"></span>
  6. <span class="icon-bar"></span>
  7. <span class="icon-bar"></span>
  8. </button>
  9. @Html.ActionLink("MovieStore", "Index", "Home", new { area = "" }, new { @class = "navbar-brand" })
  10. </div>
  11. <ul class="nav navbar-nav">
  12. <li>@Html.ActionLink("Home", "Index", "Home")</li>
  13. <li>@Html.ActionLink("About", "About", "Home")</li>
  14. <li>@Html.ActionLink("Contact", "Contact", "Home")</li>
  15. <li>@Html.ActionLink("Customers", "Customers", "Home")</li>
  16. </ul>
  17. <ul class="nav navbar-nav navbar-right">
  18. <li><a href="@Url.Action("Register", "Account")"><span class="glyphicon glyphicon-user"></span>Sign up</a></li>
  19. <li><a href="@Url.Action("Login", "Account")"><span class="glyphicon glyphicon-log-in"></span> Login</a></li>
  20. @if (Session["Username"] != null)
  21. {
  22.  
  23. }
  24. </ul>
  25. <ul class="nav navbar-nav navbar-right" style="padding-right:40px;">
  26. <li><a href="@Url.Action("ShowCart", "ShoppingCart")"><span class="glyphicon glyphicon-shopping-cart"></span>Cart</a></li>
  27. </ul>
  28. </div>
  29. </nav>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement