Set all delete buttons as bootstrap buttons.

This commit is contained in:
2019-05-18 19:00:59 +01:00
parent 40585b413e
commit 554ab18939
15 changed files with 155 additions and 67 deletions

View File

@@ -103,10 +103,16 @@
@Html.DisplayFor(model => model.Company.Name)
</dd>
</dl>
<form asp-action="Delete">
<input type="hidden" asp-for="Id" />
<input type="submit" value="Delete" class="btn btn-default" /> |
<a asp-action="Index">Back to List</a>
<input type="hidden"
asp-for="Id" />
<input class="btn btn-danger"
type="submit"
value="Delete" />
<a asp-action="Index"
class="btn btn-secondary">
Back to List
</a>
</form>
</div>
</div>