<%=l(:label_register)%>

<%= start_form_tag({:action => 'register'}, :class => "tabular") %> <%= error_messages_for 'user' %>

<%= text_field 'user', 'login', :size => 25 %>

<%= password_field_tag 'password', nil, :size => 25 %>

<%= password_field_tag 'password_confirmation', nil, :size => 25 %>

<%= text_field 'user', 'firstname' %>

<%= text_field 'user', 'lastname' %>

<%= text_field 'user', 'mail' %>

<%= select("user", "language", lang_options_for_select) %>

<% for @custom_value in @custom_values %>

<%= custom_field_tag_with_label @custom_value %>

<% end %>

<%= check_box 'user', 'mail_notification' %>

<%= submit_tag l(:button_submit) %> <%= end_form_tag %>