fairly new programmer here.
I've recently been trying to use p5.js to create a username and password form. It's worked wonderfully, at least until I needed to make the password field private (and look like a password field)
I know that there is the <input type="password">
option in HTML, but I was wondering how to incorporate this somehow into my p5.js code.
Thank you!
My code:
password = createInput();
password.position(70, 265);