1👍
✅
The error is here. You are passing form class:
stuff = {'form': LoginForm}
You should pass the form instance which you tried to validate:
stuff = {'form': form}
Source:stackexchange.com