Satish / restful-authentication

Generates common user authentication code for Rails/Merb, with a full test/unit and rspec suite and optional Acts as State Machine support built-in.
http://weblog.techno-weenie.net
MIT License
82 stars 19 forks source link

DEPRECATION WARNING: form.error_messages was removed (and fix of this problem) #8

Open killich opened 13 years ago

killich commented 13 years ago

<%#= error_messages_for :user %>

<% if @user.errors.any? %> <ul> <% @user.errors.full_messages.each do |msg| %>

  • <%= msg %>
  • <% end %>

    </ul>

    <% end %>