class AccountController < ApplicationController
- layout 'hc'
+ layout 'main'
# Be sure to include AuthenticationSystem in Application Controller instead
include AuthenticatedSystem
def index
redirect_to(:action => 'signup') unless logged_in? || User.count > 0
end
-
+
+ #these methods provide basic functionality for the user login system
+ #===================================================================
def login
+
return unless request.post?
self.current_user = User.authenticate(params[:login], params[:password])
if logged_in?
flash[:notice] = "Logged in successfully"
end
end
+
+ def forgot_password
+ raise "Not Implemented!"
+ end
def signup
@user = User.new(params[:user])
flash[:notice] = "You have been logged out."
redirect_back_or_default(:controller => '/site', :action => 'index')
end
+ #======================================================================
+
+ #The following methods are for slectricity specific uses
+ def summary
+ @user = User.find(params[:id])
+ end
+
+
end
+
+