@model PartyInvites.Models.GuestResponse @{ Layout = null; } RsvpForm

RSVP

@using (Html.BeginForm()) { @Html.ValidationSummary()
@Html.TextBoxFor(x => x.Name, new { @class = "form-control" })
@Html.TextBoxFor(x => x.Email, new { @class = "form-control" })
@Html.TextBoxFor(x => x.Email, new { @class = "form-control" })
@Html.TextBoxFor(x => x.Phone, new { @class = "form-control" })
@Html.DropDownListFor(x => x.WillAttend, new[] { new SelectListItem() {Text = "Yes, I'll be there", Value = bool.TrueString}, new SelectListItem() {Text = "No, I can't come", Value = bool.FalseString} }, "Choose an option", new { @class = "form-control" })
}