Add.cshtml
1.87 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
57
58
59
60
61
62
63
64
65
66
67
68
@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")
}