diff --git a/app/controllers/users/passwords_controller.rb b/app/controllers/users/passwords_controller.rb index 09703031c..989521c29 100644 --- a/app/controllers/users/passwords_controller.rb +++ b/app/controllers/users/passwords_controller.rb @@ -1,12 +1,13 @@ class Users::PasswordsController < Devise::PasswordsController def reset_confirmation + @user = User.find(params["id"]) render "devise/confirmations/reset" end protected def after_sending_reset_password_instructions_path_for(resource) - confirmations_reset_path if is_navigational_format? + confirmations_reset_path(id: @user.id) if is_navigational_format? end end \ No newline at end of file diff --git a/app/views/devise/confirmations/reset.html.erb b/app/views/devise/confirmations/reset.html.erb index a70254cf4..8bbdeb8a8 100644 --- a/app/views/devise/confirmations/reset.html.erb +++ b/app/views/devise/confirmations/reset.html.erb @@ -1,7 +1,7 @@

Check your email

-

We’ve sent a link to reset your password to name@example.com.

+

We’ve sent a link to reset your password to <%= @user.email %>.

You’ll only this receive this link if your email address already exists in our system.

If you don’t receive the email within 5 minutes, check your spam or junk folders. Try again if you still haven’t received the email.