Created
February 7, 2013 22:17
-
-
Save dopa/4734750 to your computer and use it in GitHub Desktop.
SimpleForm Bootstrap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%= 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