Skip to content

Instantly share code, notes, and snippets.

@ojiry
Created March 6, 2012 09:35
Show Gist options
  • Save ojiry/1985313 to your computer and use it in GitHub Desktop.
Save ojiry/1985313 to your computer and use it in GitHub Desktop.
<%= form_for(@user) do |f| %>
<%= f.hidden_field :name %>
<%= f.hidden_field :age %>
<p>
<b>Name:</b>
<%= @user.name %>
</p>
<p>
<b>Age:</b>
<%= @user.age %>
</p>
<div class="actions">
<%= f.submit %>
</div>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment