27 lines
752 B
PHP
27 lines
752 B
PHP
<!-- payment_form.php -->
|
|
<html>
|
|
<head>
|
|
<!-- Include the Square Payment Form library -->
|
|
<script src="https://js.squareupsandbox.com/v2/paymentform"></script>
|
|
</head>
|
|
<body>
|
|
<h1>Square Payment Form</h1>
|
|
|
|
<!-- Display the Square payment form container -->
|
|
<div id="sq-payment-form"></div>
|
|
|
|
<script>
|
|
// Initialize the Square payment form
|
|
const paymentForm = new SqPaymentForm({
|
|
applicationId: '<?php echo $paymentForm['application_id']; ?>',
|
|
locationId: '<?php echo $paymentForm['location_id']; ?>',
|
|
inputClass: 'sq-input',
|
|
autoBuild: false
|
|
});
|
|
|
|
// Build and display the Square payment form
|
|
paymentForm.build();
|
|
</script>
|
|
</body>
|
|
</html>
|