2009-11-10 17:33:39 +00:00
|
|
|
<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage<Orchard.Users.ViewModels.UserCreateViewModel>" %>
|
|
|
|
<%@ Import Namespace="Orchard.Security" %>
|
2009-12-23 16:30:15 +00:00
|
|
|
<h2><%=Html.TitleForPage("Add User") %></h2>
|
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>
|
|
|
|
<input class="button" type="submit" value="Create" />
|
|
|
|
</fieldset>
|
2009-12-21 01:30:24 +00:00
|
|
|
<% } %>
|