@model MALDFGASSURANCE.Models.AspNetUsers @{ ViewBag.Title = "Edit"; }

Edit

@using (Html.BeginForm()) { @Html.AntiForgeryToken()

AspNetUsers


@Html.ValidationSummary(true, "", new { @class = "text-danger" }) @Html.HiddenFor(model => model.Id)
@Html.LabelFor(model => model.Email, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.Email, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.Email, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.EmailConfirmed, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.EmailConfirmed) @Html.ValidationMessageFor(model => model.EmailConfirmed, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.PasswordHash, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.PasswordHash, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.PasswordHash, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.SecurityStamp, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.SecurityStamp, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.SecurityStamp, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.PhoneNumber, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.PhoneNumber, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.PhoneNumber, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.PhoneNumberConfirmed, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.PhoneNumberConfirmed) @Html.ValidationMessageFor(model => model.PhoneNumberConfirmed, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.TwoFactorEnabled, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.TwoFactorEnabled) @Html.ValidationMessageFor(model => model.TwoFactorEnabled, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.LockoutEndDateUtc, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.LockoutEndDateUtc, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.LockoutEndDateUtc, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.LockoutEnabled, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.LockoutEnabled) @Html.ValidationMessageFor(model => model.LockoutEnabled, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.AccessFailedCount, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.AccessFailedCount, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.AccessFailedCount, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.UserName, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.UserName, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.UserName, "", new { @class = "text-danger" })
}
@Html.ActionLink("Back to List", "Index")