2009-11-10 17:33:39 +00:00
|
|
|
<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage<Orchard.Users.ViewModels.UserCreateViewModel>" %>
|
|
|
|
<%@ Import Namespace="Orchard.Security" %>
|
|
|
|
<%@ Import Namespace="Orchard.Mvc.Html" %>
|
2009-12-02 22:49:30 +00:00
|
|
|
<% Html.Include("AdminHead"); %>
|
2009-12-11 08:29:52 +00:00
|
|
|
<h2>Add User</h2>
|
2009-12-03 22:47:43 +00:00
|
|
|
<%using (Html.BeginForm()) { %>
|
|
|
|
<%= Html.ValidationSummary() %>
|
|
|
|
<%= Html.EditorForModel() %>
|
|
|
|
<fieldset>
|
|
|
|
<input class="button" type="submit" value="Create" />
|
|
|
|
</fieldset>
|
|
|
|
<% } %>
|
2009-12-02 22:49:30 +00:00
|
|
|
<% Html.Include("AdminFoot"); %>
|