Guest User

Untitled

a guest
Feb 20th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. !! What do i want in place of those comments?
  2.  
  3.  
  4. def forgot_password
  5. if request.post?
  6. @message_text = "If your email is registered with us, an email will be sent containing your login information."
  7. else
  8. @message_text = "Your email address was not found in the system. Please register for an account."
  9. end
  10.  
  11. def send_password
  12. if params[:email].any?
  13. @users = User.find(:first, :conditions => "email = '" + params[:email] + "'")
  14. if @users
  15. redirect_back(2)
  16. else
  17. redirect_back(1)
  18. end
  19. end
  20. end
Add Comment
Please, Sign In to add comment