Skip to content

Commit

Permalink
Change login-view to Rails 3 in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
mindbreaker committed Feb 22, 2012
1 parent 309187b commit 9867c49
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 this post from being saved:</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 9867c49

Please sign in to comment.