Commit e74a6bc2a4ad08c23895ece555157f69accd9b15

Authored by Dan Croak
1 parent a1b7cb43

remember me should be :required => false

Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
app/views/sessions/new.html.erb
... ... @@ -4,10 +4,10 @@
4 4 <% form.inputs do %>
5 5 <%= form.input :email %>
6 6 <%= form.input :password, :as => :password %>
7   - <%= form.input :remember_me, :as => :boolean %>
  7 + <%= form.input :remember_me, :as => :boolean, :required => false %>
8 8 <% end %>
9 9 <% form.buttons do %>
10   - <%= form.commit_button "Sign In" %>
  10 + <%= form.commit_button "Sign in" %>
11 11 <% end %>
12 12 <% end %>
13 13  
... ...