21 lines
678 B
Plaintext
21 lines
678 B
Plaintext
- title t('.title')
|
|
|
|
- content_for :submenu do
|
|
= render_cell 'locomotive/settings_menu', :show
|
|
|
|
%p!= t('.help')
|
|
|
|
= semantic_form_for @account, :url => accounts_url do |f|
|
|
|
|
= f.foldable_inputs :name => :information do
|
|
= f.input :name
|
|
- unless f.object.respond_to?(:password)
|
|
= f.input :email
|
|
|
|
- if f.object.respond_to?(:password)
|
|
= f.foldable_inputs :name => :credentials do
|
|
= f.input :email
|
|
= f.input :password, :input_html => { :autocomplete => "off" }
|
|
= f.input :password_confirmation, :input_html => { :autocomplete => "off" }
|
|
|
|
= render 'locomotive/shared/form_actions', :back_url => edit_current_site_url, :button_label => :create |