Create new generic redirect routes
Much like the route that we already have created for /user/edit, we need to create a new routes to redirect to the following user pages:
* `/change-password` -\> `/user/{your-user-id}/change-password`
* `/linked-accounts` -\> `/user/{your-user-id}/linked-accounts`
Creating these new paths will make it easier to share a link in documentations for our users.
issue