2010-01-06 09:06:55 +00:00
|
|
|
<%@ Page Language="C#" Inherits="Orchard.Mvc.ViewPage<UserCreateViewModel>" %>
|
|
|
|
<%@ Import Namespace="Orchard.Users.ViewModels"%>
|
|
|
|
<h1><%=Html.TitleForPage(T("Add User").ToString()) %></h1>
|
2009-12-22 23:32:37 +00:00
|
|
|
<%using (Html.BeginFormAntiForgeryPost()) { %>
|
2009-12-21 01:30:24 +00:00
|
|
|
<%=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) %>
|
2009-12-17 10:29:33 +00:00
|
|
|
<fieldset>
|
2010-01-06 09:06:55 +00:00
|
|
|
<input class="button" type="submit" value="<%=_Encoded("Create") %>" />
|
2009-12-17 10:29:33 +00:00
|
|
|
</fieldset>
|
2009-12-21 01:30:24 +00:00
|
|
|
<% } %>
|