[Answer]-Django Error: No module named 'UserAuth.forms'

1👍

There’s no module forms.
You need to understand what is a python module: https://docs.python.org/2/tutorial/modules.html

Changing the name of your LoginForm.py to forms.py should work.

Leave a comment