You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When Im logged in as superadmin user and click log out on the navbar I get this error.
Copilot said:
The terminal message indicates that a GET request was made to the /user/logout/ URL, but the server responded with a 405 Method Not Allowed status code. This means that the GET method is not allowed for the /user/logout/ endpoint.
In Django, the logout view typically only allows POST requests for security reasons. To fix this, you should ensure that the logout request is made using the POST method.
The text was updated successfully, but these errors were encountered:
Log out does not work.
When Im logged in as superadmin user and click log out on the navbar I get this error.
Copilot said:
The text was updated successfully, but these errors were encountered: