[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

login form

Johny ben

12/22/2008 3:06:00 AM

I just want to create a login form on my RoR project.anyone have a good
suggestion,what do i need?
--
Posted via http://www.ruby-....

3 Answers

rustam mamat

12/22/2008 4:32:00 AM

0

[Note: parts of this message were removed to make it a legal post.]

please look on the site www.railscasts.com i guess there is a tutorial about
what you are looking for .tutorial about restful_authentication
http://railscasts.com/episodes/67-restful-auth...
goo luck



On Mon, Dec 22, 2008 at 12:06 PM, Johny ben <joh13ny@yahoo.com> wrote:

> I just want to create a login form on my RoR project.anyone have a good
> suggestion,what do i need?
> --
> Posted via http://www.ruby-....
>
>

Saji N. Hameed

12/22/2008 4:46:00 AM

0

On Mon, Dec 22, 2008 at 12:06 PM, Johny ben <joh13ny@yahoo.com> wrote:

> I just want to create a login form on my RoR project.anyone have a good
> suggestion,what do i need?

check out http://goldberg.... for the goldberg plugin

saji

--
Saji N. Hameed

APEC Climate Center +82 51 668 7470
National Pension Corporation Busan Building 12F
Yeonsan 2-dong, Yeonje-gu, BUSAN 611705 saji@apcc21.net
KOREA



Johny ben

12/26/2008 3:03:00 AM

0

Rustam Mamat wrote:
> please look on the site www.railscasts.com i guess there is a tutorial
> about
> what you are looking for .tutorial about restful_authentication
> http://railscasts.com/episodes/67-restful-auth...
> goo luck

sir thank you for your reply I use the restful_authentication on my
login form.
I have a problem on how to edit the two model in one form.My application
run like this the user need to sign up,after sign up he can edit his
profile.
THe model :
class User < ActiveRecord::Base
has_one :profile
end

class Profile < ActiveRecord::Base
belongs_to :user
end

My Migration
class AddProfileTable < ActiveRecord::Migration
def self.up
create_table :profiles do |t|
t.string :lastname
t.string :firstname
t.integer :user_id

end
end

def self.down
remove_table :profiles
end
end

My Controller
def edit
@user = User.find(params[:id])
end

def create

@user = User.new(params[:user])
@user.save
@profile = Profile.new
@profile.user_id = @user.id
@profile.save

if @user.errors.empty?
self.current_user = @user
redirect_to :controller => "viewer", :action => "show",:name
=>'Home'
flash[:notice] = "Thanks for signing up!"
else
render :action => 'new'
end
end

The edit form
<% form_for(@user) do |f| %>
<p>
<b>Name</b><br />
<%= f.text_field :login %>
</p>
<p>
<b>Email</b><br />
<%= f.text_field :email %>
</p>
<br />
<p> <%= f.submit "Update" %> </p>
<% end %>

How can add the lastname field on edit form?how the update method look
like?
--
Posted via http://www.ruby-....