1
I am developing a mobile application using the Ionic framework. There is also a Django API that communicates with a Postgresql database.
I have already created an authentication system for the application and it works perfectly as well as editing a user’s data. My question is on the part of changing a User’s password.
I’ve looked on the internet for ways to solve this problem but I always find the implementation with package Django.contrib.auth. The problem is that in all ways to solve this problem, they use Forms for a web application. In my case, I just wanted to have the view so I could make a request where I changed the password.
Thank you.
Thanks! I’ve already found a package that has some features and helps a lot in authentication anyway. https://github.com/sunscrapers/djoser
– Pedro Tavares