5
votes
Can I implement a web user authentication system in python without POST?
You can actually do it all with GET methods. However, you'll want to use a full challenge response protocol for the logins. (You can hash on the client side using javascript. You just need to se …
