@kimflow1
after your<form>tag try entering a div with the class as form-elements. This tells the script what area needs to be cleared to display the success message.
<form class="gform" data-email="[email protected]" method="post" enctype="multipart/form-data" action="https://script.google.com/macros/s/AKfycbwA99DAoedqxZzJTOzyS-2-o1EcXVkjy-X0yenXpTNIiJgUBA/exec">
<div class="form-elements">
<fieldset>
(all that stuff here)
</div>
</div>
</div>
</div>
</fieldset>
</form>
Also, it looks like you are trying to load that cufon script at the same time, and accidentally closed the tag before the form script
try this:
<script type="text/javascript">Cufon.now();</script>
<script type="text/javascript">
-------All that javascript here (don't copy this line)-------
</script>
Most helpful comment
@kimflow1
after your
<form>tag try entering a div with the class as form-elements. This tells the script what area needs to be cleared to display the success message.Also, it looks like you are trying to load that cufon script at the same time, and accidentally closed the tag before the form script
try this: