Skip to content

Instantly share code, notes, and snippets.

@thoughtbot
Created August 4, 2009 22:29
Show Gist options
  • Save thoughtbot/162348 to your computer and use it in GitHub Desktop.
Save thoughtbot/162348 to your computer and use it in GitHub Desktop.
<% form_for @house_search do |form| %>
<div>
<%= form.label :keyword %>
<%= form.text_field :keyword %>
</div>
<div>
<%= form.label :price %>
<%= form.select :price, [['20-30', '20-30k']] %>
</div>
<div>
<%= form.submit 'Search' %>
</div>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment