Webiant Logo Webiant Logo
  1. No results found.

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

_JavaScriptDisabledWarning.cshtml

@using Nop.Core.Domain.Common
@inject CommonSettings CommonSettings
@if (CommonSettings.DisplayJavaScriptDisabledWarning)
{
    <noscript>
        <div class="noscript">
            <p>
                <strong>JavaScript seems to be disabled in your browser.</strong>
            </p>
            <p>
                You must have JavaScript enabled in your browser to utilize the functionality of
                this website.
            </p>
        </div>
    </noscript>
}