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
The logout button does a GET and it re-uses and calls a Django internal function which has this lovely comment:
# RemovedInDjango50Warning: when the deprecation ends, remove "get" and
# "head" from http_method_names.
http_method_names = ["get", "head", "post", "options"]
We can no longer logout with a GET and as folks probably don't want to
depend on JavaScript for logging out, add a form and style the input as
an anchor to make POST'ing work.
Closes: archlinux#511
Login works fine. However, when I clicked Logout, it shows an empty page, and I see an
HTTP/2 405
error in Firefox devtools.The text was updated successfully, but these errors were encountered: