FIXME Razor page errors

This commit is contained in:
Paul Schneider
2023-03-20 09:13:16 +00:00
parent 8b607e2606
commit e1812737bd
234 changed files with 859 additions and 856 deletions

View File

@ -4,13 +4,13 @@
ViewData["Title"] = "Edit";
}
<h2>@SR["Edit"]</h2>
<h2>Edit</h2>
<form asp-action="Edit">
<div class="form-horizontal">
<h4>HairTaint</h4>
<hr />
<div asp-validation-summary="ValidationSummary.ModelOnly" class="text-danger"></div>
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
<input type="hidden" asp-for="Id" />
<div class="form-group">
<label asp-for="Brand" class="col-md-2 control-label"></label>
@ -35,6 +35,6 @@
</form>
<div>
<a asp-action="Index">@SR["Back to List"]</a>
<a asp-action="Index">Back to List</a>
</div>