Skip to content

Instantly share code, notes, and snippets.

@califa
Created November 19, 2012 03:03
Show Gist options
  • Save califa/4108727 to your computer and use it in GitHub Desktop.
Save califa/4108727 to your computer and use it in GitHub Desktop.
User Form
<%= form_for @user, :validate => true do |f| %>
<%= f.label :name, "User Name" %>
<%= f.text_field :name %>
<%= f.label :email %>
<%= f.text_field :email %>
<%= f.label :password %>
<%= f.password_field :password %>
<%= f.submit "Sign up" %>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment