I'm developing a mobile application using the Ionic framework. There is also an API in django that communicates with a PostgreSQL Database.
I have already created an authentication system for the application and it works perfectly just like editing a user's data. My question is in the part of changing the password of a User.
I have already searched the internet for ways to solve this problem but I always find the implementation with the package django.contrib.auth. The problem is that in all ways of solving this problem, they use the forms for a web application. In my case, I just wanted the view to be able to make a request where I changed the password.
Thank you.