All checks were successful
continuous-integration/drone/push Build is passing
34 lines
1.1 KiB
Plaintext
34 lines
1.1 KiB
Plaintext
@page
|
|
@model ExternalLoginModel
|
|
@{
|
|
ViewData["Title"] = "Register";
|
|
}
|
|
|
|
<h1>@ViewData["Title"]</h1>
|
|
<h4 id="external-login-title">Associate your @Model.ProviderDisplayName account.</h4>
|
|
<hr />
|
|
|
|
<p id="external-login-description" class="text-info">
|
|
You've successfully authenticated with <strong>@Model.ProviderDisplayName</strong>.
|
|
Please enter an email address for this site below and click the Register button to finish
|
|
logging in.
|
|
</p>
|
|
|
|
<div class="row">
|
|
<div class="col-md-4">
|
|
<form asp-page-handler="Confirmation" asp-route-returnUrl="@Model.ReturnUrl" method="post">
|
|
<div asp-validation-summary="ModelOnly" class="text-danger"></div>
|
|
<div class="form-group">
|
|
<label asp-for="Input.Email"></label>
|
|
<input asp-for="Input.Email" class="form-control" />
|
|
<span asp-validation-for="Input.Email" class="text-danger"></span>
|
|
</div>
|
|
<button type="submit" class="btn btn-primary">Register</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
@section Scripts {
|
|
<partial name="_ValidationScriptsPartial" />
|
|
}
|