How can i hide user name and password for user after login?

Hi everyone, i have a question:

I need hide all information in _Per user settings after login.

User name and password must be hide or change password to ******.

Thank you :slightly_smiling_face:

You could enter an expression in the Show property pertinent columns of the _Per User Settings table.

That said, be sure you’re using appropriately AppSheet’s signin options and the User Settings functionality.

2 Likes

Thank you so much for your response to my request for information but i don’t know any expression in the Show and I tried following some clips but it’s impossible.

Do you have any expression for Show?

Thank you so much :slightly_smiling_face:

Try putting the word false in the show_if expression if the columns in the UserSettings table.

1 Like

Thank for your comment, but “putting the word false in the show_if expression” only hide this field and user can sign in without a password. @@

← Sorry, my mistake, not for windows @@

i need control that : )

If you’re using User Settings for user sign in to Windows, it seems likely that’s a misuse or a misunderstanding.

Regardless, to do what you want, you need a conditional expression in the Show property. For example: ISNOTBLANK([_THIS])

3 Likes

What you’re attempting is not secure and cannot be made secure. It is also a violation of AppSheet’s terms of use.

2 Likes

Hi all, after all day in angry, i fixed it by that, this is my solution:

Reset on edit (in Update Behavior) is my solution! Check it will make form must be required after user Logout.

After all, thank all :slightly_smiling_face:

1 Like

Hi All,

I want to mask my login password. I am using app formula in [password] filed

IF(
LEN([Password])>=3, concatenate(“***”,RIGHT([Password],LEN([Password])-3)),[Password])

Password is masked but it is giving an error “Wrong password”

1 Like