Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

modules/account/src/Volo.Abp.Account.Web/Pages/Account/Login.cshtml #7350

Closed
bartvanhoey opened this issue Jan 19, 2021 · 1 comment · Fixed by #7355
Closed

modules/account/src/Volo.Abp.Account.Web/Pages/Account/Login.cshtml #7350

bartvanhoey opened this issue Jan 19, 2021 · 1 comment · Fixed by #7355
Assignees
Milestone

Comments

@bartvanhoey
Copy link
Contributor

bartvanhoey commented Jan 19, 2021

In the file modules/account/src/Volo.Abp.Account.Web/Pages/Account/Login.cshtml. In the section below GivenTenantIsNotAvailable is used as a translation key on the title attribute. Is this correct? When I hover over the Facebook login button In my app I get GivenTenantIsNotAvailable as a title. Is this correct or am I doing something wrong?

 @if (Model.VisibleExternalProviders.Any())
{
    <div class="mt-2">
        <h5>@L["OrLoginWith"]</h5>
        <form asp-page="./Login" asp-page-handler="ExternalLogin" asp-route-returnUrl="@Model.ReturnUrl" asp-route-returnUrlHash="@Model.ReturnUrlHash" method="post">
            <input asp-for="ReturnUrl"/>
            <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>
            }
        </form>
    </div>
}
@maliming maliming self-assigned this Jan 20, 2021
@maliming maliming added this to the 4.3-preview milestone Jan 20, 2021
@maliming
Copy link
Member

I think it wrong, checking.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants