I made a login page following the steps on the Wappler page. Is it also possible to make a login page in which, if people want to log in, need to fill in more than one password? For example they need to fill in:
username [field to fill in username] password 1 [field to fill in password 1] password 2 [field to fill in password 2]
Submit [button]
Is this possible and how can I accomplish this?
Thank you!
Thanks for your reaction!
Iโm designing a game and for that it is necessary to be able to fill in two different passwords or for example a username, password and a code. The purpose is that the client needs to fill in these drie different things and after he/she has done that right, he got acces to the rest of the website.
Is there a way to tweak the security login that it can take two passwords or is there a different kinda way to do this.
Security Enforcer only allows one password. However, I think there may be a way to do what you need.
Use the normal one password authentication for authenticating. Since this authenticates from a recordset assuming you are getting your passwords etc from a database you can filter that database by your code field.
So if the code exists in the database it will allow the authentication. If the code is wrong it wonโt authenticate. This only works if you have no duplicate codes in your database.
Another option would be to hide the submit button until you get a match on all three fields. On your login page have a query that is filtered by all three fields. And if the three fields are matched in the database show the submit button. This is the option I would use.