[Django]-Custom django registration form

6👍

I suggest to you to inherit and override some methods using any of two default backends:

....
from registration.backends.default import SimpleBackend
class MyBackend(SimpleBackend):
   ....

or if you need backend with email confirmation:

....
from registration.backends.default import DefaultBackend
class MyBackend(DefaultBackend):
   ....

Leave a comment