Re: How to create custom registration form in django rest api?

2020-02-17 Thread onlinejudge95
On Sun, Feb 16, 2020 at 3:19 PM maunish dave wrote: > I am creating an health care app which need to include patients and > doctors account, i have created Doctor model which have various info of > doctor now i want a serializer which maps this model to a proper html > registration form. > You c

How to create custom registration form in django rest api?

2020-02-16 Thread maunish dave
I am creating an health care app which need to include patients and doctors account, i have created Doctor model which have various info of doctor now i want a serializer which maps this model to a proper html registration form. My problem is that i can get a normal form rendered but it is only st

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

custom registration form

2019-03-25 Thread Shubham Joshi
How can I create sign up form in such a way that..once a form has been filled and submitted by user (teacher / student) . The form should be sent to the Admins email id , once s/he verified the sign up form , the user should able log in -- You received this message because you are subscribed t