Skip to content

Instantly share code, notes, and snippets.

Created August 29, 2009 17:26
Show Gist options
  • Save anonymous/177585 to your computer and use it in GitHub Desktop.
Save anonymous/177585 to your computer and use it in GitHub Desktop.
<h1>Register</h1>
<% form_for(@user) do |f| %>
<%= f.error_messages %>
<% fields_for @user.person do |g| %>
<p>
<%= g.label :firstname %><br />
<%= g.text_field :firstname %>
</p>
<% end %>
<p>
<%= f.label :email %><br />
<%= f.text_field :email %>
</p>
<p>
<%= f.label :password %><br />
<%= f.password_field :password %>
</p>
<p>
<%= f.label :password_confirmation %><br />
<%= f.password_field :password_confirmation %>
</p>
<p>
<%= f.submit 'Create' %>
</p>
<% end %>
<%= link_to 'home', root_url %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment