2006-06-28 22:11:03 +04:00
|
|
|
<%= error_messages_for 'user' %>
|
|
|
|
|
2006-07-29 13:32:58 +04:00
|
|
|
<div class="box">
|
2006-06-28 22:11:03 +04:00
|
|
|
<!--[form:user]-->
|
2006-09-02 17:33:23 +04:00
|
|
|
<p><%= f.text_field :login, :required => true, :size => 25 %></p>
|
2006-06-28 22:11:03 +04:00
|
|
|
|
2006-09-02 17:33:23 +04:00
|
|
|
<p><label for="password"><%=l(:field_password)%><span class="required"> *</span></label>
|
2006-07-09 20:30:01 +04:00
|
|
|
<%= password_field_tag 'password', nil, :size => 25 %></p>
|
|
|
|
|
2006-09-02 17:33:23 +04:00
|
|
|
<p><label for="password_confirmation"><%=l(:field_password_confirmation)%><span class="required"> *</span></label>
|
2006-07-09 20:30:01 +04:00
|
|
|
<%= password_field_tag 'password_confirmation', nil, :size => 25 %></p>
|
2006-06-28 22:11:03 +04:00
|
|
|
|
2006-09-02 17:33:23 +04:00
|
|
|
<p><%= f.text_field :firstname, :required => true %></p>
|
|
|
|
<p><%= f.text_field :lastname, :required => true %></p>
|
|
|
|
<p><%= f.text_field :mail, :required => true %></p>
|
|
|
|
<p><%= f.select :language, lang_options_for_select %></p>
|
2006-07-29 13:32:58 +04:00
|
|
|
|
2006-07-31 23:52:08 +04:00
|
|
|
<% for @custom_value in @custom_values %>
|
|
|
|
<p><%= custom_field_tag_with_label @custom_value %></p>
|
2006-07-29 13:32:58 +04:00
|
|
|
<% end %>
|
|
|
|
|
2006-09-02 17:33:23 +04:00
|
|
|
<p><%= f.check_box :admin %></p>
|
|
|
|
<p><%= f.check_box :mail_notification %></p>
|
2006-06-28 22:11:03 +04:00
|
|
|
|
|
|
|
<!--[eoform:user]-->
|
2006-07-29 13:32:58 +04:00
|
|
|
</div>
|