diff --git a/users/forms.py b/users/forms.py index 80a54a2..393a422 100644 --- a/users/forms.py +++ b/users/forms.py @@ -52,7 +52,7 @@ class RegisterUserForm(Validation): class Meta: model = User - fields = ['email', 'username', 'last_name', 'social_name',] + fields = ['email', 'username', 'last_name', 'social_name', 'image',] class ProfileForm(Validation): password = forms.CharField(label=_('Password'), widget = forms.PasswordInput, required = False) diff --git a/users/templates/users/register.html b/users/templates/users/register.html index f09d790..2969f4e 100644 --- a/users/templates/users/register.html +++ b/users/templates/users/register.html @@ -38,7 +38,7 @@