Form Builder: Prevent everyone from taking a screenshot of the form

  • bprosen
    Asked on July 9, 2021 at 5:48 AM

    Is there any option/setting in the Jotform so that when any user is filling the form or is on the form page. He/she cannot be able to print the form nor can capture the screen?

  • Billy JotForm Support
    Replied on July 9, 2021 at 8:18 AM

    Hi there!

    I hope you're doing well and thanks for reaching out.

    You can prevent other people from printing the content of the form by injecting CSS code. Please inject the code below:

    @media print{
      .jotform-form {
        display : none!important;
      }

      body::before {
        font-size : 40pt;
        color : #cc0000;
        content : "No Printing Allowed";
        white-space : pre-wrap;
      }

      body {
        text-align : center !important;
      }

    }


    Please see what's going to happen when someone attempts to print the form:

    1625832966 60e83e0630762  Screenshot 10

    Unfortunately, there's no option to prevent other people from taking a screenshot of the form. I've already sent a feature request to our relevant team. Hopefully, it gets implemented soon.

    Let us know if you need further assistance.

    Best regards,