Skip to content
Snippets Groups Projects
Unverified Commit 1743e0e5 authored by Ahtisham Shahid's avatar Ahtisham Shahid Committed by GitHub
Browse files

Merge pull request #24228 from edx/ahtisham/PROD-1679

Removed confirm email after SSO
parents c8abbd2c 340e0098
Branches
Tags
No related merge requests found
...@@ -1087,6 +1087,17 @@ class RegistrationFormFactory(object): ...@@ -1087,6 +1087,17 @@ class RegistrationFormFactory(object):
instructions="", 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 # Hide the password field
form_desc.override_field_properties( form_desc.override_field_properties(
"password", "password",
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment