diff --git a/apps/auth/views.py b/apps/auth/views.py index 43f66bc0..1f4cf8ec 100644 --- a/apps/auth/views.py +++ b/apps/auth/views.py @@ -251,6 +251,7 @@ class LandingRegistrationView(View): form = LandingRegistrationForm(request.POST) if not form.is_valid(): return HttpResponse(form.errors.as_text()) + phone = form.cleaned_data['phone'] name = form.cleaned_data['name'].split() email = form.cleaned_data['email'].lower()