-
-
-
-
- @if (User.Identity.IsAuthenticated)
- {
- if (User.Identity.Name == "hounsell")
- {
- - @Html.ActionLink("Administration", "index", new { controller = "base", area = "admin" })
- -
- }
- - @Html.ActionLink("Add a build", "create", "build")
- -
- - @Html.ActionLink("Change your password", "password", "support")
- - @Html.ActionLink("Log out", "logout", "support")
- }
- else
- {
- - @Html.ActionLink("Log in", "login", "support")
- - @Html.ActionLink("Register", "register", "support")
- }
-
-
-
+
+
+ @Html.TextBox("search-input", "", new { @class = "form-control" })
+
+ @if (User.Identity.IsAuthenticated)
+ {
+ if (User.Identity.Name == "hounsell")
+ {
+ @Html.ActionLink("Administration", "index", new { controller = "base", area = "admin" }, new { @class = "list-group-item" })
+ }
+ @Html.ActionLink("Add a build", "create", new { controller = "build" }, new { @class = "list-group-item" })
+ @Html.ActionLink("Change your password", "password", new { controller = "support" }, new { @class = "list-group-item" })
+ @Html.ActionLink("Log out", "logout", new { controller = "support" }, new { @class = "list-group-item" })
+ }
+ else
+ {
+ @Html.ActionLink("Log in", "login", new { controller = "support" }, new { @class = "list-group-item" })
+ @Html.ActionLink("Register", "register", new { controller = "support" }, new { @class = "list-group-item" })
+ }
+