Mendix Login Form

0
Hi, While using Mendix login form, the userid and password are passed form the browser as plain text and it is visible . Is there a way to ensure that the password and userid is encrypted before transmitted over the network for authentication. Thanks Aravind
asked
1 answers
0

No there is not, because its HTML and even if you do encrypt the data before sending the encryption key will be able to be traced to some point in the code. 

The data which is entered inside the login form will be data the user typed into it.

The only security possible at this stage is to have SSL up and running to make sure the data that is sent over the server is going through a secured line.

This is also how any other form / application works regarding sending data from forms to the server.

answered