UsersController returns! Design updates

This commit is contained in:
Dimitar Byalkov
2022-04-08 22:09:31 +03:00
parent c9777042c0
commit 8935dbdc99
10 changed files with 361 additions and 98 deletions

View File

@@ -4,11 +4,10 @@
ViewData["Title"] = "Delete";
}
<h1>Delete</h1>
<h1>Delete user</h1>
<h3>Are you sure you want to delete this?</h3>
<div>
<h4>User</h4>
<hr />
<dl class="row">
<dt class = "col-sm-2">
@@ -117,7 +116,7 @@
<form asp-action="Delete">
<input type="hidden" asp-for="Id" />
<input type="submit" value="Delete" class="btn btn-danger" /> |
<a asp-action="Index">Back to List</a>
<input type="submit" value="Delete" class="btn btn-danger" />
<a type="button" class="btn btn-secondary" asp-action="Index">Back to List</a>
</form>
</div>