Sha256: 1efcfeb21cf1bae02fc4221000a1cd7ee19e56008cefb637bd893b4c8d1a8839

Contents?: true

Size: 1.29 KB

Versions: 10

Compression:

Stored size: 1.29 KB

Contents

<% content_for :header, t('.fill_form') %>
<%= form_for :user, :url => users_path do |f| -%>

  <%= render :partial => "/shared/admin/error_messages",
             :locals => {
               :object => @user,
               :include_object_name => true
             } %>

  <div class='field'>
    <%= f.label :login %>
    <%= f.text_field :login, :class => 'larger widest' %>
  </div>
  <div class='field'>
    <%= f.label :email %>
    <%= f.text_field :email, :class => 'larger widest' %>
  </div>
  <div class='field'>
    <%= f.label :password %>
    <%= f.password_field :password, :class => 'larger widest' %>
  </div>
  <div class='field'>
    <%= f.label :password_confirmation %>
    <%= f.password_field :password_confirmation, :class => 'larger widest' %>
  </div>

  <% if just_installed? %>
    <% Refinery::Plugins.registered.in_menu.names.sort.each do |plugin| -%>
      <%= hidden_field_tag 'user[plugins][]', plugin, :id => "plugins_#{plugin.downcase.gsub(" ", "_")}" %>
    <% end -%>
  <% end -%>

  <%= render :partial => "/shared/admin/form_actions",
             :locals => {
               :f => f,
               :submit_continue => false,
               :submit_button_text => t('.sign_up'),
               :hide_delete => true,
               :hide_cancel => true
             }%>
<% end -%>

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
refinerycms-0.9.8.9 vendor/refinerycms/authentication/app/views/users/new.html.erb
refinerycms-0.9.8.8 vendor/refinerycms/authentication/app/views/users/new.html.erb
refinerycms-0.9.8.7 vendor/refinerycms/authentication/app/views/users/new.html.erb
refinerycms-0.9.8.6 vendor/refinerycms/authentication/app/views/users/new.html.erb
refinerycms-0.9.8.5 vendor/refinerycms/authentication/app/views/users/new.html.erb
refinerycms-0.9.8.4 vendor/refinerycms/authentication/app/views/users/new.html.erb
refinerycms-0.9.8.3 vendor/refinerycms/authentication/app/views/users/new.html.erb
refinerycms-0.9.8.2 vendor/refinerycms/authentication/app/views/users/new.html.erb
refinerycms-0.9.8.1 vendor/refinerycms/authentication/app/views/users/new.html.erb
refinerycms-0.9.8 vendor/refinerycms/authentication/app/views/users/new.html.erb