Skip to content

Instantly share code, notes, and snippets.

@palominoz
palominoz / gist:1607543
Created January 13, 2012 17:04
simple form_for a user model
<%- form_for @user do |form| -%>
<%= form.error_messages %>
<ul>
<li>
<%= form.label :email %>
<%= form.text_field :email %>
</li>
<li>
<%= form.label :password %>
<%= form.password_field :password %>