mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 10:40:29 +01:00
3c76dfb584
btn-default has been removed in Bootstrap4: https://github.com/twbs/bootstrap/issues/25029
33 lines
1.0 KiB
Plaintext
33 lines
1.0 KiB
Plaintext
@model ExternalLoginViewModel
|
|
@{
|
|
ViewData["Title"] = "Register";
|
|
}
|
|
|
|
<h2>@ViewData["Title"]</h2>
|
|
<h4>Associate your @ViewData["LoginProvider"] account.</h4>
|
|
<hr />
|
|
|
|
<p class="text-info">
|
|
You've successfully authenticated with <strong>@ViewData["LoginProvider"]</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-action="ExternalLoginConfirmation" asp-route-returnurl="@ViewData["ReturnUrl"]" method="post">
|
|
<div asp-validation-summary="All" class="text-danger"></div>
|
|
<div class="form-group">
|
|
<label asp-for="Email"></label>
|
|
<input asp-for="Email" class="form-control" />
|
|
<span asp-validation-for="Email" class="text-danger"></span>
|
|
</div>
|
|
<button type="submit" class="btn btn-primary">Register</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
@section Scripts {
|
|
@await Html.PartialAsync("_ValidationScriptsPartial")
|
|
}
|