Witam,
Tak jak w temacie usilnie staram się to zrobić czytałem :
post
i ustawiłem w view/user_sessions/_form
[code]<% form_for(@user_session || UserSession.new, :url => user_session_path) do |f| %>
<%= f.error_notification %>
<%= f.input :username %>
<%= f.input :password %>
<%= f.check_box :remember_me %><%= f.label :zapamietaj_mnie %>
<%= f.button :submit, :class => 'btn btn-success', :value => 'Zaloguj się'%> <%= link_to 'Powrót', root_url,:class => 'btn btn-warning' %>
<% end %>[/code]
w stronie startowej wyświetlam w taki sposób:
<%= render :partial => "user_sessions/form" %>
niestety wyrzuca mi błąd następujący :
[code]Routing Error
No route matches {:action=>“show”, :controller=>“user_sessions”}
Try running rake routes for more information on available routes.[/code]
nie rozumiem po co chce akcję show ? przecież potrzebuje tylko new ?