Re: Authentication with Multiple User

2021-07-07 Thread Ridwan Adeyemo
Thanks a lot for this I would try it as soon as possible. Best Regards. On Tue, Jul 6, 2021, 9:39 PM Joel Tanko <7thog...@gmail.com> wrote: > If what you're trying to do is have two types of user accounts, then you'd > have to create a base user model and have personal and business inherit > from

Re: Authentication with Multiple User

2021-07-06 Thread Joel Tanko
If what you're trying to do is have two types of user accounts, then you'd have to create a base user model and have personal and business inherit from it - and it being a subclass of AbstractBaseUser class BaseAccount(AbstractBaseUser): … # all public fields class PersonalAccount(BaseAcc

Authentication with Multiple User

2021-06-29 Thread Ridwan Adeyemo
Hello, How do I implement a multiple users registration/signup form. For example the user needs to have (username, name password, and confirm password ) while the seller is going to have (Business Name, Business Email, address, tax id, phone number and password, and confirm password) Best Reg