Created
November 19, 2012 03:03
-
-
Save califa/4108727 to your computer and use it in GitHub Desktop.
User Form
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_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