2👍
✅
Try adding a $
to the end of your first regex. At the moment, it matches both /accounts/register/
and /accounts/register/complete/
.
url(r'^accounts/register/$', 'registration.views.register', {'form_class':RegistrationFormUniqueEmail,'backend':'registration.backends.default.DefaultBackend' }),
Source:stackexchange.com