Files
Orchard/src/Orchard.Web/Packages/Orchard.Users/Views/Admin/Create.aspx

13 lines
522 B
Plaintext
Raw Normal View History

<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage<Orchard.Users.ViewModels.UserCreateViewModel>" %>
<%@ Import Namespace="Orchard.Security" %>
<%@ Import Namespace="Orchard.Mvc.Html" %>
<% Html.Include("AdminHead"); %>
<h2>Add User</h2>
<%using (Html.BeginForm()) { %>
<%= Html.ValidationSummary() %>
<%= Html.EditorForModel() %>
<fieldset>
<input class="button" type="submit" value="Create" />
</fieldset>
<% } %>
<% Html.Include("AdminFoot"); %>