add search bar

This commit is contained in:
Michael 2017-04-07 10:50:18 -04:00
parent 5eea4787f1
commit 626b027787

View file

@ -1,4 +1,15 @@
@using Microsoft.AspNet.Identity @using Microsoft.AspNet.Identity
<ul class="nav navbar-nav navbar-right">
@using(Html.BeginForm("Search", "Home", FormMethod.Post))
{
<li><input type="text" name="query" class="form-control navbar-search" /></li>
<li><input type="submit" value="Search" class="btn btn-default" /></li>
}
</ul>
@if (Request.IsAuthenticated) @if (Request.IsAuthenticated)
{ {
using (Html.BeginForm("LogOff", "Account", FormMethod.Post, new { id = "logoutForm", @class = "navbar-right" })) using (Html.BeginForm("LogOff", "Account", FormMethod.Post, new { id = "logoutForm", @class = "navbar-right" }))