I have a action/view named: join
And I post the the 'create' action.
What should my create action look like, I want to pre-populate some fields if the creation process had an error in it (like say the email address).
So far I have:
def create
@user = User.new(params[:user])
if @user.save
end
end