diff --git a/SportsStore/SportsStore.WebUI/SportsStore.WebUI.csproj b/SportsStore/SportsStore.WebUI/SportsStore.WebUI.csproj
index c4791a0..b8817e6 100644
--- a/SportsStore/SportsStore.WebUI/SportsStore.WebUI.csproj
+++ b/SportsStore/SportsStore.WebUI/SportsStore.WebUI.csproj
@@ -155,6 +155,7 @@
+
Web.config
diff --git a/SportsStore/SportsStore.WebUI/Views/Cart/Checkout.cshtml b/SportsStore/SportsStore.WebUI/Views/Cart/Checkout.cshtml
new file mode 100644
index 0000000..c851840
--- /dev/null
+++ b/SportsStore/SportsStore.WebUI/Views/Cart/Checkout.cshtml
@@ -0,0 +1,61 @@
+@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
+
+
+
+
+
+
+
+}