Stripe button in Zoho form

Stripe button in Zoho form

Hi,

I wonder if the below script can be passed into one of the Zoho form or page?
It is actually a post request to Stripe server and it returns in json format, including a token and also other data. Then I would like to use these data in zoho forms further. 
So, the code should be embed into Zoho because the "answer" from Stripe server will return to a page where the code was embed but adding "/charge"

<form action="/charge" method="POST">
  <script
    src="https://checkout.stripe.com/checkout.js" class="stripe-button"
    data-key="pk_test_4S0p7WDolFSUPact8aqQt9bR"
    data-name="Towerup"
    data-description="2 widgets"
    data-currency="nok"
    data-amount="2000">
  </script>
</form>

Is that possible? 

Thanks