Password and form resubmission

  • ColasRoadbridge
    Asked on November 21, 2017 at 9:14 AM

    Hi,


    Hi, I am looking to have a section of the form hidden until a password is typed in to a text box. I could not see a password option so intend to get around this by having a text box and using conditional logic to show fields. Is there a way to make the text in this box invisible/white so that it cant be seen? Or is there an alternative?

    I also am looking for a way that once the submission is received, I could edit and then on second submission send only part of the form back to the applicant in an email. Can this be done? 

    For example:

    1) the applicant applies using part of the section of the form open to them and submits

    2) On receipt of the email notification, I edit the form, adding the password to unlock the internal section of the form for internal use only

    3) And finally when I submit the form the second time, a select part of the form is emailed back to the applicant.



  • BJoanna
    Replied on November 21, 2017 at 11:20 AM

    Please note that the password fields are not allowed. If you want to password protect your form you can use phrases like 'Access code' or 'Security key'. 

    You can hide the text with the CSS code. If this request it related to the first field of your form add this CSS code to your form:

    input#input_693{

    -webkit-text-security: disc;

    text-security: disc;

    }

    How to Inject Custom CSS Codes

    1511281002hideinput Screenshot 10

    I moved your other question to a separate thread and we will provide you an answer there shortly - https://www.jotform.com/answers/1304021 

  • ColasRoadbridge
    Replied on November 21, 2017 at 5:30 PM

    Thanks - perfect