added email validation and tthen saved any params they were entering during signup in an @user object

This commit is contained in:
Ken Johnson
2013-04-28 02:49:02 -04:00
parent 6d24bf8993
commit d01e508bc3
10 changed files with 68 additions and 6 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ class UsersController < ApplicationController
session[:id] = user.id
redirect_to home_dashboard_index_path
else
@user = User.new
@user = user
render :new
end
end