Hello I'm trying to create a login validation using my own database but it does not work. How and What is the right logic for me to be able to use the username and password of my created database? It is supposed to go to another screen when it has the right credentials. Thank you.
Hi,
How you are saving your password in DB before login, it should be encrypted than you will able to login from your DB.
And when you login you that have to again encrypt and than check with DB because in the DB we are saving encrypted password.
Hope this will help you.
Thanks
Ruchi
Hi Hemie,
As suggested by Ruchi, you need to encrypt the password and store in DB and do the same encryption while comparison for successful login.
You can check this below thread for how to do the password encryption,
https://www.outsystems.com/forums/discussion/32802/how-to-encrypt-a-password-using-the-native-encryption-algorithm-of-outsystems/
Hope this helps!