mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-09-22 20:13:50 +08:00
15 lines
701 B
Plaintext
15 lines
701 B
Plaintext
<%@ Page Language="C#" Inherits="Orchard.Mvc.ViewPage<UserCreateViewModel>" %>
|
|
<%@ Import Namespace="Orchard.Users.ViewModels"%>
|
|
<h1><%=Html.TitleForPage(T("Add User").ToString()) %></h1>
|
|
<%using (Html.BeginFormAntiForgeryPost()) { %>
|
|
<%=Html.ValidationSummary() %>
|
|
<%=Html.EditorFor(m=>m.UserName, "inputTextLarge")%>
|
|
<%=Html.EditorFor(m=>m.Email, "inputTextLarge") %>
|
|
<%=Html.EditorFor(m=>m.Password, "inputPasswordLarge") %>
|
|
<%=Html.EditorFor(m=>m.ConfirmPassword, "inputPasswordLarge") %>
|
|
<%=Html.EditorForItem(Model.User) %>
|
|
<fieldset>
|
|
<input class="button primaryAction" type="submit" value="<%=_Encoded("Create") %>" />
|
|
</fieldset>
|
|
<% } %>
|