Files
lmltfy/lmltfy/Views/Shared/SearchBarParitalView.cshtml
Tommy Parnell 439141fbb2 init
2015-07-25 18:14:53 -04:00

14 lines
646 B
Plaintext

@model lmltfy.Models.SearchModel
<h2 class="text-center" style="margin-bottom: 50px">Let Me <img src="~/Images/logo-homepage.png" alt="lycos" /> That for you</h2>
<div class="col-md-offset-4" id="mainGrp">
<div class="form-inline">
<div class="form-group">
@Html.EditorFor(model => model.Search, new { htmlAttributes = new { @class = "form-control", @placeholder = "Search" } })
</div>
<button type="submit" class="btn btn-default" id="submitBtn" style="vertical-align: bottom">
<span class="glyphicon glyphicon-search" aria-hidden="true"></span> Search
</button>
</div>
</div>