2👍
✅
You haven’t passed the correct two parameters. The register
view requires two args: request
and backend
. Everything else (all the kwargs) are optional. Django automatically passes request
and you passed in the success_url
kwarg, so that’s 2, but you’re missing backend
.
Source:stackexchange.com