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).

JS Library v3 JS Library v2
<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="<CDN_DOMAIN>"></script>
<script>
(function() {
var st = SecureTrading({
jwt:'INSERT YOUR JWT HERE',
formId: "stform",
});
st.Components();
})();
</script>
</body>
</html>

Replace DOMAIN placeholder with a supported domain. Click here for a full list.

Was this article helpful?
0 out of 1 found this helpful