<%= error_messages_for 'user' %>


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


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

(this will be shown publically if supplied)
<%= text_field 'user', 'email' %>

(this can be blank)
<%= text_field 'user', 'jabber' %>


<%= password_field_tag 'user[password]', '', :id => 'user_password', :size => 30 %>


<%= password_field 'user', 'password_confirmation' %>


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


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


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


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