Skip to content

Commit

Permalink
Merge branch 'master' of github.com:binarylogic/authlogic
Browse files Browse the repository at this point in the history
  • Loading branch information
binarylogic committed Jun 1, 2012
2 parents d93590b + 958c141 commit 3bda41b
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions README.rdoc
Expand Up @@ -174,8 +174,17 @@ What if your user sessions controller could look just like your other controller

As you can see, this fits nicely into the RESTful development pattern. What about the view...

<% form_for @user_session do |f| %>
<%= f.error_messages %>
<%= form_for @user_session do |f| %>
<% if @user_session.errors.any? %>
<div id="error_explanation">
<h2><%= pluralize(@user_session.errors.count, "error") %> prohibited:</h2>
<ul>
<% @user_session.errors.full_messages.each do |msg| %>
<li><%= msg %></li>
<% end %>
</ul>
</div>
<% end %>
<%= f.label :login %><br />
<%= f.text_field :login %><br />
<br />
Expand Down

0 comments on commit 3bda41b

Please sign in to comment.