Guys,
I implemented owin authentication user and all works fine. I have one problem that i can't figure how to implement.
i'm trying to reset password for user, and the only things the framework provided is this method:
example:
Usermanager.ResetPassword(model.Id, code, model.Password);
I would like to reset the password without passing any token and sent email to user. what I would like to do is to reset the password and tell user what is new password :).
There is a way to do it that way?