main
Last change
on this file was 2aea0fd, checked in by ElenaMoskova <elena.moskova99@…>, 4 months ago |
init commit Elena
|
-
Property mode
set to
100644
|
File size:
859 bytes
|
Rev | Line | |
---|
[2aea0fd] | 1 | @page
|
---|
| 2 | @model ResendEmailConfirmationModel
|
---|
| 3 | @{
|
---|
| 4 | ViewData["Title"] = "Resend email confirmation";
|
---|
| 5 | }
|
---|
| 6 |
|
---|
| 7 | <h1>@ViewData["Title"]</h1>
|
---|
| 8 | <h2>Enter your email.</h2>
|
---|
| 9 | <hr />
|
---|
| 10 | <div class="row">
|
---|
| 11 | <div class="col-md-4">
|
---|
| 12 | <form method="post">
|
---|
| 13 | <div asp-validation-summary="All" class="text-danger" role="alert"></div>
|
---|
| 14 | <div class="form-floating mb-3">
|
---|
| 15 | <input asp-for="Input.Email" class="form-control" aria-required="true" placeholder="name@example.com" />
|
---|
| 16 | <label asp-for="Input.Email" class="form-label"></label>
|
---|
| 17 | <span asp-validation-for="Input.Email" class="text-danger"></span>
|
---|
| 18 | </div>
|
---|
| 19 | <button type="submit" class="w-100 btn btn-lg btn-primary">Resend</button>
|
---|
| 20 | </form>
|
---|
| 21 | </div>
|
---|
| 22 | </div>
|
---|
| 23 |
|
---|
| 24 | @section Scripts {
|
---|
| 25 | <partial name="_ValidationScriptsPartial" />
|
---|
| 26 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.