engine/app/views/admin/accounts/new.html.haml

18 lines
565 B
Plaintext
Raw Normal View History

- title t('.title')
- content_for :submenu do
2011-07-25 21:07:32 +00:00
= render_cell 'admin/settings_menu', :show
2010-07-21 23:56:42 +00:00
%p!= t('.help')
= semantic_form_for @account, :url => admin_accounts_url do |f|
= f.foldable_inputs :name => :information do
= f.input :name
= f.foldable_inputs :name => :credentials do
= f.input :email
= f.input :password, :input_html => { :autocomplete => "off" }
= f.input :password_confirmation, :input_html => { :autocomplete => "off" }
2010-07-21 23:56:42 +00:00
= render 'admin/shared/form_actions', :back_url => edit_admin_current_site_url, :button_label => :create