M y code is like this below

<button id="srp-button1">Paynow</button>
<script src="https://checkout.Mypay.com/v1/checkout.js"></script>
<script>
var options = {
"key": "YOUR_KEY_ID"
"amount": "100", 
"currency": "USD",
"name": "ZUECorp",
"description": "Test Transaction",
"image": "https://platform.com/platform_logo",
"order_id": "ORD_323824834793284", 
"account_id": "account_15676465",
"handler": function (response){
    alert(response.Mypay_payment_id);
    alert(response.Mypay_order_id);
    alert(response.Mypay_signature)
}
};
var myp1 = new mypay(options);
document.getElementById('myp-button1').onclick = function(e){
myp1.open();
e.preventDefault();
}
</script>indent preformatted text by 4 spaces