HELP!!! I need a simple, minimally secure username/password function to protect access to one of my view pages.
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.