デバイス登録コントローラーのオーバーライドに取り組んでいます。新しいユーザーでサインアップすると、初めてサインインしますが、サインアウトしてからサインインしようとすると、コンソールに以下のエラーが表示されます
Processing by Devise::SessionsController#create as HTML
Parameters: {"utf8"=>"✓","authenticity_token"=>"Wq8QW/F8X1BVxFcH6M9WU8OUpIGjKI1mKd1+/OBGyGY=", "user"=> {"email"=>"jamil@gmail.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Sign in"}
User Load (0.2ms) SELECT `users`.* FROM `users` WHERE `users`.`email` = 'jamil@gmail.com' LIMIT 1
**Completed 401 Unauthorized in 16ms**
Processing by Devise::SessionsController#new as HTML
Parameters: {"utf8"=>"✓" , "authenticity_token"=>"Wq8QW/F8X1BVxFcH6M9WU8OUpIGjKI1mKd1+/OBGyGY=", "user"=> {"email"=>"jamil@gmail.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Sign in"}
その後、無効な電子メールまたはパスワードのメッセージが表示されます
この奇妙な問題で私を助けてください...私はハングアップしています
ここに私の登録フォームがあります
<h2>Sign up</h2>
resource_name, :url => registration_path(resource_name)) do |f| %>
<div><%= f.label :email %><br />
<%= f.email_field :email, :autofocus => true %></div>
<div><%= f.label :Connector_code %><br />
<%= f.text_field :invitation_token,:value => @token %></div>
<div><%= f.label :password %><br />
<%= f.password_field :password %></div>
<div><%= f.label :password_confirmation %><br />
<%= f.password_field :password_confirmation %></div>
<div><%= f.label :Friends_code %><br />
<%= f.text_field :friend_token ,:value =>params[:invitation_token]%></div>
<div><%= f.submit "Sign up" %></div>
<% end %>
<%= render "devise/shared/links" %>
Thanks