yavsc/Yavsc/Views/Users/Delete.cshtml

137 lines
3.7 KiB
Plaintext

@model Yavsc.Models.ApplicationUser
@{
ViewData["Title"] = "Delete";
}
<h2>Delete</h2>
<h3>Are you sure you want to delete this?</h3>
<div>
<h4>ApplicationUser</h4>
<hr />
<dl class="dl-horizontal">
<dt>
@Html.DisplayNameFor(model => model.AccessFailedCount)
</dt>
<dd>
@Html.DisplayFor(model => model.AccessFailedCount)
</dd>
<dt>
@Html.DisplayNameFor(model => model.Avatar)
</dt>
<dd>
@Html.DisplayFor(model => model.Avatar)
</dd>
<dt>
@Html.DisplayNameFor(model => model.ConcurrencyStamp)
</dt>
<dd>
@Html.DisplayFor(model => model.ConcurrencyStamp)
</dd>
<dt>
@Html.DisplayNameFor(model => model.DedicatedGoogleCalendar)
</dt>
<dd>
@Html.DisplayFor(model => model.DedicatedGoogleCalendar)
</dd>
<dt>
@Html.DisplayNameFor(model => model.DiskQuota)
</dt>
<dd>
@Html.DisplayFor(model => model.DiskQuota)
</dd>
<dt>
@Html.DisplayNameFor(model => model.DiskUsage)
</dt>
<dd>
@Html.DisplayFor(model => model.DiskUsage)
</dd>
<dt>
@Html.DisplayNameFor(model => model.Email)
</dt>
<dd>
@Html.DisplayFor(model => model.Email)
</dd>
<dt>
@Html.DisplayNameFor(model => model.EmailConfirmed)
</dt>
<dd>
@Html.DisplayFor(model => model.EmailConfirmed)
</dd>
<dt>
@Html.DisplayNameFor(model => model.FullName)
</dt>
<dd>
@Html.DisplayFor(model => model.FullName)
</dd>
<dt>
@Html.DisplayNameFor(model => model.LockoutEnabled)
</dt>
<dd>
@Html.DisplayFor(model => model.LockoutEnabled)
</dd>
<dt>
@Html.DisplayNameFor(model => model.LockoutEnd)
</dt>
<dd>
@Html.DisplayFor(model => model.LockoutEnd)
</dd>
<dt>
@Html.DisplayNameFor(model => model.NormalizedEmail)
</dt>
<dd>
@Html.DisplayFor(model => model.NormalizedEmail)
</dd>
<dt>
@Html.DisplayNameFor(model => model.NormalizedUserName)
</dt>
<dd>
@Html.DisplayFor(model => model.NormalizedUserName)
</dd>
<dt>
@Html.DisplayNameFor(model => model.PasswordHash)
</dt>
<dd>
@Html.DisplayFor(model => model.PasswordHash)
</dd>
<dt>
@Html.DisplayNameFor(model => model.PhoneNumber)
</dt>
<dd>
@Html.DisplayFor(model => model.PhoneNumber)
</dd>
<dt>
@Html.DisplayNameFor(model => model.PhoneNumberConfirmed)
</dt>
<dd>
@Html.DisplayFor(model => model.PhoneNumberConfirmed)
</dd>
<dt>
@Html.DisplayNameFor(model => model.SecurityStamp)
</dt>
<dd>
@Html.DisplayFor(model => model.SecurityStamp)
</dd>
<dt>
@Html.DisplayNameFor(model => model.TwoFactorEnabled)
</dt>
<dd>
@Html.DisplayFor(model => model.TwoFactorEnabled)
</dd>
<dt>
@Html.DisplayNameFor(model => model.UserName)
</dt>
<dd>
@Html.DisplayFor(model => model.UserName)
</dd>
</dl>
<form asp-action="Delete">
<div class="form-actions no-color">
<input type="submit" value="Delete" class="btn btn-default" /> |
<a asp-action="Index">Back to List</a>
</div>
</form>
</div>