how to achieve this in wix site ( order id will be dynamic and will be getting from backend javascript module )
<form method="POST" action="https://api.razorpay.com/v1/checkout/embedded"> <input type="hidden" name="key_id" value="YOUR_KEY_ID">
<input type="hidden" name="order_id" value="razorpay_order_id">
<input type="hidden" name="name" value="Acme Corp">
<input type="hidden" name="callback_url" value="https://example.com/payment-callback">
<button>Submit</button>
</form>