Account.cshtml
1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
@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")
}