Add project files.

This commit is contained in:
2025-07-15 11:14:03 +03:30
parent 8b899ab2a9
commit a1fed6a7ba
142 changed files with 87038 additions and 0 deletions

View File

@ -0,0 +1,64 @@
@model test.Models.User
@{
ViewBag.Title = "Delete";
}
<h2>Delete</h2>
<h3>Are you sure you want to delete this?</h3>
<div>
<h4>User</h4>
<hr />
<dl class="dl-horizontal">
<dt>
@Html.DisplayNameFor(model => model.User_Name)
</dt>
<dd>
@Html.DisplayFor(model => model.User_Name)
</dd>
<dt>
@Html.DisplayNameFor(model => model.User_LastName)
</dt>
<dd>
@Html.DisplayFor(model => model.User_LastName)
</dd>
<dt>
@Html.DisplayNameFor(model => model.User_PhoneNumber)
</dt>
<dd>
@Html.DisplayFor(model => model.User_PhoneNumber)
</dd>
<dt>
@Html.DisplayNameFor(model => model.User_Password)
</dt>
<dd>
@Html.DisplayFor(model => model.User_Password)
</dd>
<dt>
@Html.DisplayNameFor(model => model.User_Status)
</dt>
<dd>
@Html.DisplayFor(model => model.User_Status)
</dd>
</dl>
@using (Html.BeginForm()) {
@Html.AntiForgeryToken()
<div class="form-actions no-color">
<input type="submit" value="Delete" class="btn btn-default" /> |
@Html.ActionLink("Back to List", "Index")
</div>
}
</div>