Skip to content
Snippets Groups Projects
Commit 340e0098 authored by Ahtisham Shahid's avatar Ahtisham Shahid
Browse files

Removed confirm email after SSO

parent b370745b
Branches
Tags
No related merge requests found
......@@ -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",
......
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