Re: New to Django: Please Help!! Django User Model not saving first_name, last_name and email - Authentication App

2018-10-30 Thread Adrian Chipukuma
I have sorted it out using a different approach 'AbstractUser'. Thanks On Tue, Oct 30, 2018, 12:19 PM Adrian Chipukuma wrote: > Thanks for the help. Though if I remove the declarations of the > first_name, last_name and email. Then I will not be able to see these i

Re: New to Django: Please Help!! Django User Model not saving first_name, last_name and email - Authentication App

2018-10-30 Thread Adrian Chipukuma
m.cleaned_data['password1']) > new_user.save() > # Your next steps > > > I think you might need to declare password1 & password2 fields in your > Form. Do Check. > > > > On Monday, October 29, 2018 at 10:04:39 PM UTC+5:30, Adrian Chipukuma

New to Django: Please Help!! Django User Model not saving first_name, last_name and email - Authentication App

2018-10-29 Thread Adrian Chipukuma
Hello, I am new to Django and enjoying the learning process, unfortunately I am stuck, and I need expert guidance. I am learning through developing a User Authentication System. The system is supposed to have a user registration functionality, login, user profile editing and logout. I have managed