How to Solve NameError: name 'SignupForm' is not defined -- .forms

Solution: Import the 'SignupForm' module

To Solve the error, add the following line to the top of your code.

from .forms import SignupForm

 

For more information:
Python .forms SignupForm