Add.cshtml 1.87 KB
@model CWA.CpoOnline.Models.CpoUserViewModelWithPassword
@{
	ViewBag.Title = "Add User";
}

<h2>Add a New User Account</h2>


@using (Html.BeginForm("add", "users", FormMethod.Post, new { @class = "", role = "form" }))
{
	@Html.AntiForgeryToken()

	<hr />

	@Html.ValidationSummary("", new { @class = "text-danger" })

	<div class="row">
		<div class="col-sm-12 col-md-8 col-lg-6">

			<div class="form-group">
				@Html.LabelFor(m => m.FirstName, new { @class = "control-label" })
				@Html.TextBoxFor(m => m.FirstName, new { @class = "form-control" })
			</div>
			<div class="form-group">
				@Html.LabelFor(m => m.LastName, new { @class = "control-label" })
				@Html.TextBoxFor(m => m.LastName, new { @class = "form-control" })
			</div>


			<div class="form-group">
				@Html.LabelFor(m => m.Email, new { @class = "control-label" })
				@Html.TextBoxFor(m => m.Email, new { @class = "form-control" })
			</div>
			<div class="form-group">
				@Html.LabelFor(m => m.Password, new { @class = "control-label" })
				@Html.PasswordFor(m => m.Password, new { @class = "form-control" })
			</div>
			<div class="form-group">
				@Html.LabelFor(m => m.ConfirmPassword, new { @class = "control-label" })
				@Html.PasswordFor(m => m.ConfirmPassword, new { @class = "form-control" })
			</div>

			<div class="form-group">
				<div class="form-check">
					<label class="form-check-label">
						@Html.CheckBoxFor(m=>m.IsAdministrator, new {@class= "form-check-input" })
						Administrator
					</label>
				</div>
			</div>

			<div class="row">
				<div class="col-auto mr-auto">
					@Html.ActionLink("Cancel", "index", "users", new { area = "" }, new { @class = "btn btn-outline-secondary" })
				</div>
				<div class="col-auto">
					<input type="submit" class="btn btn-primary" value="Add User" />
				</div>
			</div>
		</div>
	</div>
}

@section Scripts {
	@Scripts.Render("~/bundles/jqueryval")


}