Reputation: 13
Below are code where token has visible and can access it outside the domain.
<form id="send_token" action="https://test.authorize.net/payment/payment" method="post" target="AuthNetIFrame">
Upvotes: 0
Views: 62
Reputation: 3
The hidden input stores the payment token securely within the form, making it available for submission without displaying it in the UI. wrap the field inside the form tag
<input type="hidden" name="token" id="Token" value="">
Upvotes: 0