new.html.erb 497 B

1234567891011121314151617
  1. <% content_for :subnav_items do %>
  2. <%= render 'subnav_item', link_text: 'Accounts', destination_path: accounts_path %>
  3. <% end %>
  4. <%= generate_notice notice %>
  5. <%= generate_error flash[:error] %>
  6. <%= generate_errors @account, "prohibited this account from being created:" %>
  7. <%= generate_edit_columns @account, Account,
  8. "New Account",
  9. [:name, :email, :password, :password_confirmation, nil, nil],
  10. "Create Account"
  11. %>
  12. <%= link_to 'Back', accounts_path, class: 'btn btn-default' %>