My sessions_controller source code file as follow:

class SessionsController < ApplicationController
  def new
  end

  def create
     user = User.find_by_email(params[:session][:email].downcase)
    if user && user.authenticate(params[:session][:password])
      # Sign the user in and redirect to the user's show page.

    else
      flash.now[:error] = 'Invalid email/password combination' # Not 
quite right!
      render 'new'
    end
  end

  def destroy
  end
end

Kind regards.

-- 
Posted via http://www.ruby-forum.com/.

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/rubyonrails-talk/0daa7076c7f154f8f8725c1542be05ee%40ruby-forum.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to