Skip to content

Instantly share code, notes, and snippets.

@oma
Created January 29, 2012 13:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save oma/1698732 to your computer and use it in GitHub Desktop.
Save oma/1698732 to your computer and use it in GitHub Desktop.
SimpleForm twitter bootstrap ERB
<!-- Simple form EXAMPLE using twitter bootstrap
Referenced at https://github.com/rubykurs/bootstrap
With related gists https://gist.github.com/1698584 and https://gist.github.com/1695634
app/views/reports/_form.html.erb
rails generate scaffold report title:string description:text email:string
-->
<%= simple_form_for(@report, :wrapper => :inline, :html => { :class => 'form-stacked' }) do |f| %>
<%= f.error_notification %>
<%= f.input :title %>
<%= f.input :description, as: :text, placeholder: "What would you like to report?", label: false, input_html: {rows: 3}%>
<%= f.input :email %><a data-content="We need your email in case we have follow up questions. We respect your privacy and will not share the email address with others." rel="popover" href="#" data-original-title="Email privacy">[?]</a>
<%= f.button :submit, :class =>'btn primary' %>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment