@model BuildFeed.Models.ViewModel.QuestionForm @{ ViewBag.Title = "Ask a question | BuildFeed"; }

Ask a question

Have a burning question you wish to ask the BuildFeed team? Drop us an email directly using this form. We'll respond to you using the email address you provide in the form below.

@using (Html.BeginForm()) { @Html.AntiForgeryToken()
@Html.LabelFor(model => model.Name, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.Name, new { htmlAttributes = new { @class = "form-control" } })
@Html.ValidationMessageFor(model => model.Name, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.Email, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.Email, new { htmlAttributes = new { @class = "form-control" } })
@Html.ValidationMessageFor(model => model.Email, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.Comment, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.TextAreaFor(model => model.Comment, new { @class = "form-control", rows = 5 })
@Html.ValidationMessageFor(model => model.Comment, "", new { @class = "text-danger" })
} @section Scripts { @Scripts.Render("~/bundles/jqueryval") }