diff --git a/app/main/forms.py b/app/main/forms.py index d058995f0..0ee3d5827 100644 --- a/app/main/forms.py +++ b/app/main/forms.py @@ -55,8 +55,10 @@ class RegisterUserForm(Form): def validate_mobile_number(self, field): # Validate mobile number is unique - if field.data in self.existing_mobiles: - raise ValidationError('Mobile number already exists') + # Code to re-added later + # if field.data in self.existing_mobiles: + # raise ValidationError('Mobile number already exists') + pass class TwoFactorForm(Form):