mirror of
https://github.com/bitwarden/server.git
synced 2026-01-31 22:23:18 +08:00
14 lines
421 B
Plaintext
14 lines
421 B
Plaintext
@model UserViewModel
|
|
@{
|
|
ViewData["Title"] = "User: " + Model.User.Email;
|
|
}
|
|
|
|
<h1>User <small>@Model.User.Email</small></h1>
|
|
|
|
<h2>Information</h2>
|
|
@Html.Partial("_ViewInformation", Model)
|
|
<form asp-action="Delete" asp-route-id="@Model.User.Id"
|
|
onsubmit="return confirm('Are you sure you want to delete this user (@Model.User.Email)?')">
|
|
<button class="btn btn-danger" type="submit">Delete</button>
|
|
</form>
|