Re: NameError at /account/signup/

2021-03-13 Thread Mohammad Anarul
You did not import the signup form. So showing errors On Sat, Mar 13, 2021 at 5:48 AM Eduardo Agreda López < eduardoagred...@gmail.com> wrote: > Do you have create the SingUpForm. If you use Django auth model, can you > create the forms.py file and import this path: > > from django.contrib.auth.

Re: NameError at /account/signup/

2021-03-12 Thread Fiifi Pius
It's like you are not importing your sign up form On Fri, Mar 12, 2021, 10:42 PM Noyon Barman wrote: > I can't fix it, anyone please suggest to me. > Thanks in advance > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from

Re: NameError at /account/signup/

2021-03-12 Thread Eduardo Agreda López
Do you have create the SingUpForm. If you use Django auth model, can you create the forms.py file and import this path: from django.contrib.auth.forms import UserCreationForm from django.contrib.auth.models import User inside of the forms.py file create the SingUpForm class and extends of the