@using TightWiki.Models @model TightWiki.Models.ViewModels.Profile.DeleteAccountViewModel @{ Layout = "/Views/Shared/_Layout.cshtml"; var sessionState = ViewData["SessionState"] as TightWiki.SessionState ?? throw new Exception("Wiki State Context cannot be null."); } @if (!string.IsNullOrEmpty(Model.ErrorMessage)) {
@Html.Raw(Model.ErrorMessage)
} @if (!string.IsNullOrEmpty(Model.SuccessMessage)) {
@Html.Raw(Model.SuccessMessage)
} @if (string.IsNullOrEmpty(Model.ErrorMessage)) {
删除账号 "@Model.AccountName"?
删除 "@Model.AccountName" 将永久删除该账户.该用户创建的页面将属于一个代理账户. 您将无法恢复此操作.

您确定要继续此删除操作吗?

@using (Html.BeginForm(null, null, FormMethod.Post, new { action = $"{GlobalConfiguration.BasePath}{Context.Request.Path}" })) {
  
}
}