ACCOUNT_SIGNUP_FORM_CLASS = 'accounts.forms.UserCreateForm'
from django.contrib.auth import get_user_modelfrom allauth.account.forms import SignupFormfrom django import forms
class UserCreateForm(SignupForm): class Meta: fields = ("first_name", "last_name", "email", "username", "password1", "password2") model = get_user_model() def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.fields["first_name"].label = '' self.fields["first_name"].widget.attrs["placeholder"] = "First Name" self.fields["last_name"].label = '' self.fields["last_name"].widget.attrs["placeholder"] = "Last Name" self.fields["email"].label = '' self.fields["email"].widget.attrs["placeholder"] = "Email" self.fields["username"].label = '' self.fields["username"].widget.attrs["placeholder"] = "Username" self.fields["password1"].label = '' self.fields["password1"].widget.attrs["placeholder"] = "Password" self.fields["password2"].label = '' self.fields["password2"].widget.attrs["placeholder"] = "Confirm Password"
django.core.exceptions.ImproperlyConfigured: Error importing form class accounts.forms: "cannot import name 'SignupForm'"
--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django...@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/ea79940e-0549-4ffa-802f-e72214d4ebe2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to a topic in the Google Groups "Django users" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/django-users/z4nArTYetUk/unsubscribe.
To unsubscribe from this group and all its topics, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django...@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CA%2Bgw1GXd5rekiPZO-c%3DzPK0yyw_L2XKTKv82n6uzrtgKTKK68g%40mail.gmail.com.