Overriding the st-payment identifier

  Last updated: 

This form has the same structure as the standard example provided on this page, but has been modified with a custom identifier, for cases where your application doesn’t support our naming convention (e.g. ASP.NET does not support ids containing hyphens).

<html>
  <head>
  </head>
  <body>
    <div id="st-notification-frame"></div>
    <form id="stform" action="https://www.example.com">
      <div id="st-card-number" class="st-card-number"></div>
      <div id="st-expiration-date" class="st-expiration-date"></div>
      <div id="st-security-code" class="st-security-code"></div>
      <button type="submit" id="st-form__submit" class="st-form__submit">
        Pay securely
      </button>
    </form>
    <script src="https://cdn.eu.trustpayments.com/js/latest/st.js"></script>
    <script>
      (function() {
        var st = SecureTrading({ 
          jwt:'INSERT YOUR JWT HERE',
          formId: "stform",
        }); 
        st.Components(); 
      })(); 
    </script>
  </body>
</html>
Was this article helpful?
0 out of 1 found this helpful