diff --git a/Web/Views/LeafInput/Index.cshtml b/Web/Views/LeafInput/Index.cshtml index 3531ba6..5d5844d 100644 --- a/Web/Views/LeafInput/Index.cshtml +++ b/Web/Views/LeafInput/Index.cshtml @@ -13,17 +13,7 @@
- @using (Html.BeginForm("Index", "LeafInput", FormMethod.Post)) - { - @Html.Partial("_ValidationSummary") - @Html.EditorFor(m => m.Name) - @Html.EditorFor(m => m.Email) - @Html.EditorFor(m => m.EmailConfirm) - @Html.EditorFor(m => m.Identifier) - @Html.EditorFor(m => m.SiteId) - @Html.EditorFor(m => m.PhotosynthesisType) - - } + @Html.Partial("_ValidationSummary")
@@ -58,6 +48,16 @@
+ @using (Html.BeginForm("Index", "LeafInput", FormMethod.Post)) + { + @Html.EditorFor(m => m.PhotosynthesisType) + @Html.EditorFor(m => m.Identifier) + @Html.EditorFor(m => m.SiteId) + @Html.EditorFor(m => m.Name) + @Html.EditorFor(m => m.Email) + @Html.EditorFor(m => m.EmailConfirm) + + }