source: PostgreSqlDotnetCore/Views/Customer/Delete.cshtml@ 6782104

main
Last change on this file since 6782104 was 2aea0fd, checked in by ElenaMoskova <elena.moskova99@…>, 2 months ago

init commit Elena

  • Property mode set to 100644
File size: 1.3 KB
Line 
1@model PostgreSqlDotnetCore.Models.UsersClass
2@{
3 ViewBag.Title = "Delete";
4}
5
6<h2>Delete</h2>
7
8<h3>Are you sure you want to delete this?</h3>
9<div>
10 <h4>CustomerClass</h4>
11 <hr />
12 <dl class="dl-horizontal">
13 <dt>
14 @Html.DisplayNameFor(model => model.name)
15 </dt>
16
17 <dd>
18 @Html.DisplayFor(model => model.name)
19 </dd>
20 <dt>
21 @Html.DisplayNameFor(model => model.lastname)
22 </dt>
23
24 <dd>
25 @Html.DisplayFor(model => model.lastname)
26 </dd>
27
28 <dt>
29 @Html.DisplayNameFor(model => model.email)
30 </dt>
31
32 <dd>
33 @Html.DisplayFor(model => model.email)
34 </dd>
35
36 <dt>
37 @Html.DisplayNameFor(model => model.password)
38 </dt>
39
40 <dd>
41 @Html.DisplayFor(model => model.password)
42 </dd>
43
44 <dt>
45 @Html.DisplayNameFor(model => model.number)
46 </dt>
47
48 <dd>
49 @Html.DisplayFor(model => model.number)
50 </dd>
51
52 </dl>
53
54 @using (Html.BeginForm()) {
55 @Html.AntiForgeryToken()
56
57 <div class="form-actions no-color">
58 <input type="submit" value="Delete" class="btn btn-default" /> |
59 @Html.ActionLink("Back to List", "Index")
60 </div>
61 }
62</div>
Note: See TracBrowser for help on using the repository browser.