Hide input text using html code <input type="password" /> in the "Add notes" field type?

Hide input text using html code <input type="password" /> in the "Add notes" field type?

HELP!!! I need a simple, minimally secure username/password function to protect access to one of my view pages.


So I am trying to hide the input text for a password in a form so that it looks like this:  




I cannot do it from within an HTML view because the limit on javascript in ZOHO creator prohibits me from submitting (as far as I can tell at least - please let me know if this is wrong because I'm an html noob). Thus I am trying to do it from within the form field "Add notes" which supports HTML. I've done this in the "Add notes" field type:




<div><span style="font-family: Arial; "><span style="font-size: 12px; "><strong>Password</strong></span></span><br />
<input type="password" name="Password" width="200px" /></div>


            (the name of the field is 'htmlPasswordField')




However I have been unable to validate the username/password combo is correct "on click". As seen in the code above the name of the password input is "Password." But that field is not seen by Zoho as a variable when I am writing the deluge script for "on click" actions.


Does anybody know how to make this work?