I've been attempting to prevent users from copying passwords in my Cordova app, even if they try to reveal the password. I haven't been able to find a solution yet. Here's what I've attempted so far:
.password {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
My testing has been conducted on a Samsung S9 device.