% if @user.errors.count > 0 %>
<%= start_bubble_wrap("pink","light_blue") %>
<%= error_messages_for 'user', :header_tag => "div" %>
<%= end_bubble_wrap("pink","light_blue") %>
<% else %>
<%= start_bubble_wrap("pink","light_blue") %>
<%= flash['notice'] %>
<%= end_bubble_wrap("pink","light_blue") %>
<% end %>
Your name in the game:
<%= text_field ('user','name') %>
First name
<%= text_field ('user','firstname') %>
Last name
<%= text_field ('user','lastname') %>
Your email address
<%= text_field ('user','email') %>
<%= submit_tag "Save" %>