Re: custom registration form

2019-03-25 Thread Sam W
Similar question in Stackoverflow: https://stackoverflow.com/questions/24791110/django-allauth-how-to-set-user-to-active-only-after-e-mail-verification/24809190 On Monday, March 25, 2019 at 7:52:57 AM UTC-5, Shubham Joshi wrote: > > How can I create sign up form in such a way that..once a form h

Re: custom registration form

2019-03-25 Thread Mohamed Amin
O On Mar 25, 2019 17:01, "Chetan Ganji" wrote: > There is a better way in django. > > Django provides admin panel for the admins, you just have to create one > account for the admin as superuser. Email needs to be sent manually which > can be done immediately after the form is validated. > User

Re: custom registration form

2019-03-25 Thread Chetan Ganji
There is a better way in django. Django provides admin panel for the admins, you just have to create one account for the admin as superuser. Email needs to be sent manually which can be done immediately after the form is validated. User model has "*is_active*" flag that can be used to limit access