In Drupal 7 there is a way to reset your password by going to ‘/user/password’. If you fill in your email address you should get an email in your inbox with an url to reset your password.
On that page you need to click ‘login’ and you get redirected to your profile page (‘/user’).
Is there maybe a way to edit this last redirect?
Thanks!
You can change the content of the email sent to the user in admin/config/people/accounts.
The default content is the following one:
If you are going to change the URL to which the user is directed, you need to write all the code to handle the password recovery request.
To have an idea of what Drupal does to handle a request of password reset, see user_pass_reset().