<% flashed_errors(:user) %>

Login
<%= text_field 'user', 'login', :style =>'width:330px;' %>

Email
<%= text_field 'user', 'email', :style =>'width:330px;' %>

<% unless WebistranoConfig[:authentication_method] == :cas -%>

Password
<%= password_field 'user', 'password', :style =>'width:330px;' %>

Password confirmation
<%= password_field 'user', 'password_confirmation', :style =>'width:330px;' %>

<% end -%>

Timezone
<%= time_zone_select 'user', :time_zone, ActiveSupport::TimeZone.all, {},{:style => "width:330px;"} %>

<% if logged_in? && current_user.admin? -%>

Admin?
<%= check_box 'user', 'admin', :class => 'noframe' %>

<% end -%>