## mako <%page expression_filter="h"/> <%namespace name='static' file='../static_content.html'/> <%namespace file='../main.html' import="login_query"/> <%! from django.conf import settings from django.urls import reverse from django.utils.translation import gettext as _ from six import text_type from openedx.core.djangoapps.user_authn.toggles import should_redirect_to_authn_microfrontend %> <% mktg_site_enabled = static.get_value('ENABLE_MKTG_SITE', settings.FEATURES.get('ENABLE_MKTG_SITE', False)) courses_are_browsable = settings.FEATURES.get('COURSES_ARE_BROWSABLE') allows_login = not settings.FEATURES['DISABLE_LOGIN_BUTTON'] and not combined_login_and_register can_discover_courses = settings.FEATURES.get('ENABLE_COURSE_DISCOVERY') allow_public_account_creation = static.get_value('ALLOW_PUBLIC_ACCOUNT_CREATION', settings.FEATURES.get('ALLOW_PUBLIC_ACCOUNT_CREATION')) should_redirect_to_authn_mfe = should_redirect_to_authn_microfrontend() %>