mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 19:54:57 +08:00
21 lines
676 B
Plaintext
21 lines
676 B
Plaintext
@model Orchard.Users.ViewModels.UserEditViewModel
|
|
|
|
<h1>@Html.TitleForPage(T("Edit User").ToString()) </h1>
|
|
@using (Html.BeginFormAntiForgeryPost()) {
|
|
@Html.ValidationSummary()
|
|
@Html.EditorFor(m=>m.Id)
|
|
<fieldset>
|
|
@Html.LabelFor(m => m.UserName, T("User Name"))
|
|
@Html.TextBoxFor(m=>m.UserName, new { @class = "textMedium" })
|
|
@Html.ValidationMessageFor(m=>m.UserName, "*")
|
|
</fieldset>
|
|
|
|
<fieldset>
|
|
@Html.LabelFor(m => m.Email, T("Email"))
|
|
@Html.TextBoxFor(m=>m.Email, new { @class = "textMedium" })
|
|
@Html.ValidationMessageFor(m=>m.Email, "*")
|
|
</fieldset>
|
|
|
|
@Display(Model.User)
|
|
}
|