How to hide the first eye?
MAUI Blazor Code:
The "first" eye is not coming from RadzenPassword for sure. It is probably rendered by the browser which you are using. You can search online for tips how to disable the built-in eye for <input type="password"> elements.
<input type="password">
Okay, thank you very much!
It works with this:
input[type="password"]::-ms-reveal, input[type="password"]::-ms-clear { display: none; }