diff --git a/common/test/acceptance/pages/lms/login_and_register.py b/common/test/acceptance/pages/lms/login_and_register.py index 283cb5028ee8..19bff9c6fb38 100644 --- a/common/test/acceptance/pages/lms/login_and_register.py +++ b/common/test/acceptance/pages/lms/login_and_register.py @@ -90,12 +90,8 @@ def is_form_visible(self): class CombinedLoginAndRegisterPage(PageObject): """Interact with combined login and registration page. - This page is currently hidden behind the feature flag - `ENABLE_COMBINED_LOGIN_REGISTRATION`, which is enabled - in the bok choy settings. - - When enabled, the new page is available from either - `/login` or `/register`; the new page is also served at + This page is available from either `/login` or `/register`; + it is also served at `/account/login/` or `/account/register/`, where it was available for a time during an A/B test. diff --git a/lms/envs/common.py b/lms/envs/common.py index ec7041a980bc..5428883ae99f 100644 --- a/lms/envs/common.py +++ b/lms/envs/common.py @@ -327,7 +327,7 @@ 'ENABLE_COURSE_BLOCKS_NAVIGATION_API': False, # Enable the combined login/registration form - 'ENABLE_COMBINED_LOGIN_REGISTRATION': False, + 'ENABLE_COMBINED_LOGIN_REGISTRATION': True, # Enable organizational email opt-in 'ENABLE_MKTG_EMAIL_OPT_IN': False,