This code solves my problem. I just added
readonly onfocus = "this.removeAttribute ('readonly');"
Besides
autofill = "off"
And the input should look like this
<input type="text" name="UserName" autocomplete="off" readonly onfocus="this.removeAttribute('readonly');" > <input type="password" name="Password" autocomplete="off" readonly onfocus="this.removeAttribute('readonly');" >
source share