I have a registration form contains username and password. Then i have to submit it from client to server side (jquery ajax to php). My question is, should i hash it from the client (salt + password) before sending it to server? Then store the hashed password and salt to the database? Because I'm worried. I know that user can see the request in network.
I just want to know other's idea and better explanation in this kind of situation.