I have an app which sends a user-email and a password to a server for verification using a post request:
$.post(server_url,{
email: user_email,
password: user_password,
action: requested_action_on_server
}, function(result){
//do stuff
});
The server is an https website, but I'm concerned that this doesn't protect the above user from interception of the request and thus stealing of their password.
Any chance I'm wrong and that the online server being https is sufficient to protect this information?