Browse Source
Use the correct localize key on the login page.
Resolve #7350
pull/7355/head
maliming
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
modules/account/src/Volo.Abp.Account.Web/Pages/Account/Login.cshtml
|
|
|
@ -56,7 +56,7 @@ |
|
|
|
<input asp-for="ReturnUrlHash"/> |
|
|
|
@foreach (var provider in Model.VisibleExternalProviders) |
|
|
|
{ |
|
|
|
<button type="submit" class="btn btn-primary m-1" name="provider" value="@provider.AuthenticationScheme" title="@L["GivenTenantIsNotAvailable", provider.DisplayName]">@provider.DisplayName</button> |
|
|
|
<button type="submit" class="btn btn-primary m-1" name="provider" value="@provider.AuthenticationScheme" title="@L["LogInUsingYourProviderAccount", provider.DisplayName]">@provider.DisplayName</button> |
|
|
|
} |
|
|
|
</form> |
|
|
|
</div> |
|
|
|
|