Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: payment_form.php
<html> <head> <title>Secure Acceptance - Payment Form Example</title> <link rel="stylesheet" type="text/css" href="payment.css"/> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous"> <script type="text/javascript" src="jquery-1.7.min.js"></script> </head> <body class="container"> <form id="payment_form" action="payment_confirmation.php" method="post"> <input type="hidden" name="access_key" value="fb9399f91b963a7d8b2c45e18432c04a"> <input type="hidden" name="profile_id" value="2D5AAFB5-E537-40BA-8866-0B2AFBAFD553"> <input type="hidden" name="transaction_uuid" value="<?php echo uniqid() ?>"> <input type="hidden" name="signed_field_names" value="access_key,profile_id,transaction_uuid,signed_field_names,unsigned_field_names,signed_date_time,locale,transaction_type,reference_number,amount,currency,bill_to_forename,bill_to_surname,bill_to_email"> <input type="hidden" name="unsigned_field_names"> <input type="hidden" name="signed_date_time" value="<?php echo gmdate("Y-m-d\TH:i:s\Z"); ?>"> <input type="hidden" name="locale" value="en"> <fieldset> <legend>Payment Details</legend> <div id="paymentDetailsSection" class="section"> <span>transaction_type:</span><input type="text" name="transaction_type" size="25" value="sale"><br/> <span>reference_number:</span><input type="text" name="reference_number" size="25" value="<?php echo uniqid() ?>"><br/> <span>amount:</span><input type="text" name="amount" size="25" value="1"><br/> <span>currency:</span><input type="text" name="currency" size="25" value="USD"><br/> <span>bill_to_email:</span><input type="text" name="bill_to_email" value="useremai@gmail.com"><br/> <span>bill_to_forename:</span><input type="text" name="bill_to_forename" value="John"><br/> <span>bill_to_surname:</span><input type="text" name="bill_to_surname" value="Doe"><br/> </div> </fieldset> <input type="submit" id="submit" name="submit" value="Submit"/> <script type="text/javascript" src="payment_form.js"></script> </form> </body> </html>