@model SportsStore.Domain.Entities.ShippingDetails
@{
ViewBag.Title = "SportStore: Checkout";
}
Check out now
Please enter your details, and we'll ship your goods right now
@using (Html.BeginForm())
{
Ship to
@Html.TextBoxFor(x => x.Name, new { @class = "form-control" })
Address
@Html.TextBoxFor(x => x.Line1, new { @class = "form-control" })
@Html.TextBoxFor(x => x.Line2, new { @class = "form-control" })
@Html.TextBoxFor(x => x.Line3, new { @class = "form-control" })
@Html.TextBoxFor(x => x.City, new { @class = "form-control" })
@Html.TextBoxFor(x => x.State, new { @class = "form-control" })
@Html.TextBoxFor(x => x.Zip, new { @class = "form-control" })
@Html.TextBoxFor(x => x.Country, new { @class = "form-control" })
Options
}