yavsc/Yavsc/Views/Do/Delete.cshtml

25 lines
623 B
Plaintext

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

@model UserActivity
@{
ViewData["Title"] = "Delete";
}
<h2>Delete</h2>
<h3>Are you sure you want to delete this?</h3>
<div>
<h4>UserActivity</h4>
<hr />
<dl class="dl-horizontal">
</dl>
 @Html.DisplayFor(m=>m)
<form asp-action="Delete">
<input type="hidden" asp-for="UserId" />
<input type="hidden" asp-for="DoesCode" />
<div class="form-actions no-color">
<input type="submit" value="Delete" class="btn btn-success" />
<a asp-action="Index" class="btn btn-link">Back to List</a>
</div>
</form>
</div>