Account.cshtml 1.38 KB
@model CWA.CpoOnline.Models.CpoUserViewModel
@{
	ViewBag.Title = "Update Account Information";
}

<h2>@ViewBag.Title</h2>



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

	<hr />

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

	@Html.HiddenFor(m => m.Id)
	@Html.HiddenFor(m => m.Created)
	@Html.HiddenFor(m => m.LastLogin)

	<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="row">
				<div class="col-auto mr-auto">
					@Html.ActionLink("Cancel", "index", "settings", new { area = "" }, new { @class = "btn btn-outline-secondary" })
				</div>
				<div class="col-auto">
					<input type="submit" class="btn btn-primary" value="Save Changes" />
				</div>
			</div>
		</div>
	</div>
}

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


}