• Resolved pitcheider

    (@pitcheider)


    Can I somehow prevent the users from copping the password filed and later inserted to the password confirmation field? I want the users to enter the password twice, not to copy and past it.
    Thanks for help

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author grandwp

    (@grandwp)

    Dear @pitcheider.

    We do not have such an option at present moment, but you can add the code below from the admin to have the functionality:

    window.onload = function() {
    var yourClass = document.getElementById(‘yourClass’);
    yourClass.onpaste = function(e) {
    e.preventDefault();
    }
    }

    • This reply was modified 7 years ago by grandwp.
    Thread Starter pitcheider

    (@pitcheider)

    You guys are great! Thanks for the code. Will add it and let you know in case of anything. Thanks again

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Password confirmation re-entering functionality’ is closed to new replies.