Hi,
I am trying to create a log in page where a user enters their username and then a password. I would like the app to recognise the username from a table in SQL and then the password they enter is also in that table in another column with their password on. The function needs to use their username and match to the password in the SQL column relating to that username.
I can't find anything on this specifically so any help would be appreciated.
Solved! Go to Solution.
Hi @fletch6
If(
!IsEmpty(
Filter(
Student,
UserName=UsernameInput.Text,
Paswword=PwdInput.Text
)
),
Navigate(Screen2),
Notify("Credentials not matching")
)
Working Sample
Hi @fletch6
If(
!IsEmpty(
Filter(
Student,
UserName=UsernameInput.Text,
Paswword=PwdInput.Text
)
),
Navigate(Screen2),
Notify("Credentials not matching")
)
Working Sample
Thank you so much 🙂
User | Count |
---|---|
252 | |
107 | |
90 | |
51 | |
44 |