diff --git a/openedx/core/djangoapps/user_authn/views/registration_form.py b/openedx/core/djangoapps/user_authn/views/registration_form.py
index afef5039b80df76fe10c1d32aac94d1635de6bd7..b3ce0e4b33010c2df1155755b5f2dcb11a320ee1 100644
--- a/openedx/core/djangoapps/user_authn/views/registration_form.py
+++ b/openedx/core/djangoapps/user_authn/views/registration_form.py
@@ -1087,6 +1087,17 @@ class RegistrationFormFactory(object):
                                     instructions="",
                                 )
 
+                    # Hide the confirm_email field
+                    form_desc.override_field_properties(
+                        "confirm_email",
+                        default="",
+                        field_type="hidden",
+                        required=False,
+                        label="",
+                        instructions="",
+                        restrictions={}
+                    )
+
                     # Hide the password field
                     form_desc.override_field_properties(
                         "password",