Form Service Example

        <!-- CF Edge Form Service -->
        <script>
            //Settings:
            var contactFormVersion = "2";
            var contactForms = [
              {
                contactFormId: "contact_form1",
                successId: "success",
                cfFormSite: "https://formfling.com/s/somesitecode",
                cfTurnstileSiteKey: "blahblahblah",
                successMessage: "Contact form submitted!<br> <strong>We will be in touch soon.</strong>",
                turnstileId: "cf-turnstile1",
              },
              {
                contactFormId: "contact_form2",
                successId: "success",
                cfFormSite: "https://formfling.com/s/somesitecode",
                cfTurnstileSiteKey: "blahblahblah",
                successMessage: "Contact form submitted!<br> <strong>We will be in touch soon.</strong>",
                turnstileId: "cf-turnstile2",
              }
            ];
            //end settings
        </script>
        <script src="https://edge-js.pages.dev/js/edge-form-service.js"></script>
        <style>
            .validation-error {
                border: thin solid red !important;
            }
        </style>
        <!-- End CF Edge Form Service -->