|
11 | 11 | </p> |
12 | 12 |
|
13 | 13 |
|
14 | | -<partial name="../../../Views/Shared/LinkToMethodView" model="ViewBag.CodeExampleText" /> |
| 14 | +<partial name="../../../Views/Shared/LinkToMethodView" model="ViewBag.CodeExampleText" /> |
15 | 15 |
|
16 | 16 | <p> |
17 | 17 | @Html.Raw( |
18 | | - @String.Format( |
19 | | - ViewBag.SupportingTexts.ViewSourceFile, |
| 18 | + @String.Format( |
| 19 | + ViewBag.SupportingTexts.ViewSourceFile, |
20 | 20 | "<a target='_blank' href=" + @ViewBag.source + ">CreateAccount.cs</a>" |
21 | 21 | ) |
22 | | - ) |
| 22 | + ) |
23 | 23 | </p> |
24 | 24 |
|
25 | | -<form class="eg" asp-action="CloneAccountData" method="post" data-busy="form"> |
| 25 | +<form class="eg" asp-action="CreateAccountData" method="post" data-busy="form"> |
26 | 26 | <div class="form-group"> |
27 | 27 | <label for="email"> |
28 | 28 | @Html.Raw(ViewBag.CodeExampleText.Forms[formNumber].Inputs[emailInputNumber].InputName) |
29 | 29 | </label> |
30 | 30 |
|
31 | | - <input type="email" |
32 | | - class="form-control" |
33 | | - id="email" |
34 | | - name="email" |
35 | | - aria-describedby="emailHelp" |
36 | | - placeholder="@ViewBag.CodeExampleText.Forms[formNumber].Inputs[emailInputNumber].InputPlaceholder" |
37 | | - required> |
| 31 | + <input type="email" class="form-control" id="email" name="email" aria-describedby="emailHelp" |
| 32 | + placeholder="@ViewBag.CodeExampleText.Forms[formNumber].Inputs[emailInputNumber].InputPlaceholder" required> |
38 | 33 | </div> |
39 | 34 |
|
40 | 35 | <div class="form-group"> |
41 | 36 | <label for="firstName"> |
42 | 37 | @Html.Raw(ViewBag.CodeExampleText.Forms[formNumber].Inputs[firstNameInputNumber].InputName) |
43 | 38 | </label> |
44 | 39 |
|
45 | | - <input type="text" |
46 | | - class="form-control" |
47 | | - id="firstName" |
48 | | - placeholder="@ViewBag.CodeExampleText.Forms[formNumber].Inputs[firstNameInputNumber].InputPlaceholder" |
49 | | - name="firstName" |
50 | | - required /> |
| 40 | + <input type="text" class="form-control" id="firstName" |
| 41 | + placeholder="@ViewBag.CodeExampleText.Forms[formNumber].Inputs[firstNameInputNumber].InputPlaceholder" |
| 42 | + name="firstName" required /> |
51 | 43 | </div> |
52 | 44 |
|
53 | 45 | <div class="form-group"> |
54 | 46 | <label for="lastName"> |
55 | 47 | @Html.Raw(ViewBag.CodeExampleText.Forms[formNumber].Inputs[lastNameInputNumber].InputName) |
56 | 48 | </label> |
57 | 49 |
|
58 | | - <input type="text" |
59 | | - class="form-control" |
60 | | - id="lastName" |
61 | | - placeholder="@ViewBag.CodeExampleText.Forms[formNumber].Inputs[lastNameInputNumber].InputPlaceholder" |
62 | | - name="lastName" |
63 | | - required /> |
| 50 | + <input type="text" class="form-control" id="lastName" |
| 51 | + placeholder="@ViewBag.CodeExampleText.Forms[formNumber].Inputs[lastNameInputNumber].InputPlaceholder" |
| 52 | + name="lastName" required /> |
64 | 53 | </div> |
65 | 54 |
|
66 | 55 | <button type="submit" class="btn btn-primary">@Html.Raw(ViewBag.SupportingTexts.SubmitButton)</button> |
|
0 commit comments