FIXME Razor page errors

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

View file

@ -8,7 +8,7 @@
<form asp-controller="Manage" asp-action="ChangePassword" method="post" class="form-horizontal" role="form">
<h4>Change Password Form</h4>
<hr />
<div asp-validation-summary="ValidationSummary.All" class="text-danger"></div>
<div asp-validation-summary="All" class="text-danger"></div>
<div class="form-group">
<label asp-for="OldPassword" class="col-md-2 control-label"></label>
<div class="col-md-10">
@ -32,9 +32,9 @@
</div>
<div class="form-group">
<div class="col-md-offset-2 col-md-10">
<button type="submit" class="btn btn-default">@SR["Change password"]</button>
<button type="submit" class="btn btn-default">Change password</button>
<a asp-action="ForgotPassword" asp-controller="Account">@SR["Forgot your password?"]</a>
<a asp-action="ForgotPassword" asp-controller="Account">Forgot your password?"]</a>
</div>
</div>
</form>