source: PostgreSqlDotnetCore/Areas/Identity/Pages/Account/ExternalLogin.cshtml@ 2aea0fd

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

init commit Elena

  • Property mode set to 100644
File size: 1.2 KB
Line 
1@page
2@model ExternalLoginModel
3@{
4 ViewData["Title"] = "Register";
5}
6
7<h1>@ViewData["Title"]</h1>
8<h2 id="external-login-title">Associate your @Model.ProviderDisplayName account.</h2>
9<hr />
10
11<p id="external-login-description" class="text-info">
12 You've successfully authenticated with <strong>@Model.ProviderDisplayName</strong>.
13 Please enter an email address for this site below and click the Register button to finish
14 logging in.
15</p>
16
17<div class="row">
18 <div class="col-md-4">
19 <form asp-page-handler="Confirmation" asp-route-returnUrl="@Model.ReturnUrl" method="post">
20 <div asp-validation-summary="ModelOnly" class="text-danger" role="alert"></div>
21 <div class="form-floating mb-3">
22 <input asp-for="Input.Email" class="form-control" autocomplete="email" placeholder="Please enter your email."/>
23 <label asp-for="Input.Email" class="form-label"></label>
24 <span asp-validation-for="Input.Email" class="text-danger"></span>
25 </div>
26 <button type="submit" class="w-100 btn btn-lg btn-primary">Register</button>
27 </form>
28 </div>
29</div>
30
31@section Scripts {
32 <partial name="_ValidationScriptsPartial" />
33}
Note: See TracBrowser for help on using the repository browser.