Client API does not load

Client API does not load

Please, I need some help: I'm trying to integrate a form ZC public into my Webpage using Client API.  But it loads only the buttons submit and reset.

What am I doing wrong?

Note: when generating a permalink, instead of appearing the encryptedLink, theZC adds "ZC_PUBLIC_REQUEST" in the URL.


Below is the html code of my web page (public url: eciclo.trendimoveis.com.br):

<html>
 <head>
 
<script src="http://creator.zoho.com/appcreator/js/jsonform.js" type="text/javascript"></script>

<script scr="http://creator.zoho.com/eciclo/form/json/11/ZC_PUBLIC_REQUESTED" type="text/javascript"></script>

 
 </head>
 
 <body>
 Hello WOrd!

 
 <form user="eciclo" linkid="11" nexturl="http://www.trendimoveis.com.br/" onsubmit='Zoho.submit(this); return false;'>
    <table>
        <tr>
            <td><script type="text/javascript">Zoho.writeLabel("Solicitante");</script></td>
            <td><script type="text/javascript">Zoho.writeInput("Solicitante");</script></td>
        </tr>
        <tr>
            <td><script type="text/javascript">Zoho.writeLabel("Fiscal");</script></td>
            <td><script type="text/javascript">Zoho.writeInput("Fiscal");</script></td>
        </tr>
    </table>
<br>
    <script type="text/javascript">Zoho.writeSubmit("Solicitar Coleta");</script>
    <script type="text/javascript">Zoho.writeReset("Limpar");</script>
    
</form>
 
 </body>
 
</html>