Re: How to make Custom User Registration and Login

2020-05-31 Thread sunday honesty
It's better to make a separate app for users. You can call the app users or account. Create a form.py file in your users app. Then create a CustomUser class that inherits from either AbstractUser or AbstractBaseUser (check out the difference between the two). Then you can define the fields you want

Re: How to make Custom User Registration and Login

2020-05-31 Thread Abhi Mathew
Here: Django Custom User Model I don't how familiar you are with Django but this post will help you anyhow! On Wednesday, May 6, 2020 at 3:39:29 PM UTC+5:30, Anubhav Madhav wrote: > > I am new to Django. I need to make a custom sign up and log i

Re: How to make Custom User Registration and Login

2020-05-07 Thread Anubhav Madhav
Thankyou so much Kushal!! On Wednesday, 6 May 2020 20:47:39 UTC+5:30, Kushal Neupane wrote: > > For you following web pages or video will help you. > > https://simpleisbetterthancomplex.com/tutorial/2017/02/18/how-to-create-user-sign-up-view.html > > https://www.youtube.com/watch?v=oZUb372g6Do

Re: How to make Custom User Registration and Login

2020-05-07 Thread Anubhav Madhav
Thankyou Camilo!! On Wednesday, 6 May 2020 20:42:10 UTC+5:30, Camilo Garcia wrote: > > This might come in handy > https://learndjango.com/tutorials/django-custom-user-model > > On Wednesday, May 6, 2020 at 5:09:29 AM UTC-5, Anubhav Madhav wrote: >> >> I am new to Django. I need to make a custom s

Re: How to make Custom User Registration and Login

2020-05-06 Thread Kushal Neupane
For you following web pages or video will help you. https://simpleisbetterthancomplex.com/tutorial/2017/02/18/how-to-create-user-sign-up-view.html https://www.youtube.com/watch?v=oZUb372g6Do https://docs.djangoproject.com/en/3.0/topics/auth/customizing/ https://testdriven.io/blog/django-custom-user

Re: How to make Custom User Registration and Login

2020-05-06 Thread Camilo Garcia
This might come in handy https://learndjango.com/tutorials/django-custom-user-model On Wednesday, May 6, 2020 at 5:09:29 AM UTC-5, Anubhav Madhav wrote: > > I am new to Django. I need to make a custom sign up and log in page. > Because, during Sign Up, I also want to get User's Address and Conta

How to make Custom User Registration and Login

2020-05-06 Thread Anubhav Madhav
I am new to Django. I need to make a custom sign up and log in page. Because, during Sign Up, I also want to get User's Address and Contact Number. In Django's 'User' module, it isn't supported. So, how can I make a custom sign up and sign in page. Please Help!! -- You received this message b