Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

_MultiFactorAuthenticationProviders.cshtml

@model IList<MultiFactorAuthenticationProviderModel>

<ul class="method-list" id="mfa-provider-block">
    @foreach (var provider in Model)
    {
        <li>
            <div class="method-name">
                @if (!string.IsNullOrEmpty(provider.LogoUrl))
                {
                    <div class="payment-logo">
                        <label for="provider_@(provider.SystemName)">
                            <img src="@provider.LogoUrl" alt="@provider.Name" />
                        </label>
                    </div>
                }
                <div class="payment-details">
                    <input id="provider_@(provider.SystemName)" type="radio" name="mfa_provider" value="@(provider.SystemName)" checked="@provider.Selected" />
                    <label for="provider_@(provider.SystemName)">@provider.Name</label>
                    @if (!string.IsNullOrEmpty(provider.Description))
                    {
                        <div class="payment-description">@provider.Description</div>
                    }
                </div>

                <div class="buttons">
                    <button type="button" class="button-1 save-customer-info-button" onclick="location.href = '@(Url.RouteUrl(NopRouteNames.Standard.CUSTOMER_MULTI_FACTOR_AUTHENTICATION_PROVIDER_CONFIG, new { providerSysName = provider.SystemName }))'">@T("Common.Config")</button>
                </div>
            </div>
        </li>  
    }
</ul>