Browse Source

Use the correct localize key on the login page.

Resolve #7350
pull/7355/head
maliming 6 years ago
committed by GitHub
parent
commit
a0ce2cc284
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      modules/account/src/Volo.Abp.Account.Web/Pages/Account/Login.cshtml

2
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>

Loading…
Cancel
Save