Is there a way to disable / hide password field on user creation

Hi,

Anyone except the owner of account should know the password for security purpose.

I added passwordless connection. I would like to disable/hide password field when someone create a user.

Is there a way to disable or hide the password field on user creation form in panel ?

Thanks

You should be able to hide it via a custom Panel stylesheet.

Thanks !

I used following css:

/* disable password on user creation */
[data-route="Users"] ~ div .k-overlay .k-column:nth-child(3) {
  display: none;
}