Skip to content

Instantly share code, notes, and snippets.

@softwaregravy
Created August 5, 2011 22:54
Show Gist options
  • Save softwaregravy/1128720 to your computer and use it in GitHub Desktop.
Save softwaregravy/1128720 to your computer and use it in GitHub Desktop.
raw forms
<%= form_tag(search_path, :method => "get") do %>
<%= label_tag(:q, "Search for:") %>
<%= text_field_tag(:q) %>
<%= submit_tag("Search") %>
<% end %>
# from http://guides.rubyonrails.org/form_helpers.html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment