refactoring the Register

This commit is contained in:
Paul Schneider 2026-02-22 23:39:56 +00:00
commit f1dd648970
43 changed files with 4610 additions and 86 deletions

View file

@ -1,12 +1,12 @@
@model Client
@{
ViewData["Title"] = @SR["Delete"];
ViewData["Title"] = @Localizer["Delete"];
}
<h2>@SR["Delete"]</h2>
<h2>@Localizer["Delete"]</h2>
<h3>@SR["AreYourSureYouWantToDeleteThis"]</h3>
<h3>@Localizer["AreYourSureYouWantToDeleteThis"]</h3>
<div>
<h4>Client</h4>
<hr />
@ -64,7 +64,7 @@
<form asp-action="Delete">
<div class="form-actions no-color">
<input type="submit" value="Delete" class="btn btn-default" /> |
<a asp-action="Index">@SR["Back to List"]</a>
<a asp-action="Index">@Localizer["Back to List"]</a>
</div>
</form>
</div>