Created
January 16, 2013 00:00
-
-
Save thomasbiddle/4543359 to your computer and use it in GitHub Desktop.
Rails Forms
This file contains hidden or 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
<%= form_tag('/projects/build/', :method => "post") do %> | |
<%= label_tag(:revision, "Revision:") %> | |
<%= text_field_tag(:revision) %> | |
<%= submit_tag "Submit", :confirm => "You sure you want to do that?", :class => "btn btn-primary" %> | |
<% end %> | |
# In the controller: | |
params[:revision] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment