Skip to content

Instantly share code, notes, and snippets.

@dopa
Created February 7, 2013 22:17
Show Gist options
  • Save dopa/4734750 to your computer and use it in GitHub Desktop.
Save dopa/4734750 to your computer and use it in GitHub Desktop.
SimpleForm Bootstrap
<%= simple_form_for @product, :html => { :class => 'form-horizontal' } do |f| %>
<fieldset>
<legend><%= controller.action_name.capitalize %> Product</legend>
<%= f.input :name %>
<%= f.input :price %>
<div class="form-actions">
<%= f.submit nil, :class => 'btn btn-primary' %>
<%= link_to 'Cancel', products_path, :class => 'btn' %>
</div>
</fieldset>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment