diff --git a/AuthApp/forms.py b/AuthApp/forms.py index 9cafafb..b183c31 100644 --- a/AuthApp/forms.py +++ b/AuthApp/forms.py @@ -26,7 +26,7 @@ class RegistrationForm(forms.Form): email = forms.EmailField() password = forms.CharField(widget=forms.PasswordInput()) confirm_password = forms.CharField(widget=forms.PasswordInput()) - tel = forms.CharField() + tel = forms.CharField(required=False) agreement = forms.BooleanField(initial=False, required=True) def __init__(self, *args, **kwargs):