I've read these:
Is it worth hashing passwords on the client side
Password encryption at client side
... and I STILL think that hashing your password on the client side is better. Let me explain.
The first cited article advocates that you should make the login page stand alone since there's no way to trust the entire codebase used in the client side. I think it makes sense.
And if it makes sense, how can you trust the entire codebase used in the server side?
So many upvoted answers above are claiming that "don't hash on client side, because TLS exists". That's true for preventing the password from sniffed, but is not related at all if it's about our potentially-evil server side code.
Also, I don't see any reason for the server side to hash the password if it's hashed already. If your server is cracked, you're done - regardless of the passwords - but the cracker can't use the obtained passwords anywhere else.
But since I can find no such answer, my statement seems to be fundamentally wrong. What am I missing?