# Put the Stripe Customer Payment Page onto a Customer Statement form in NetSuite

## Steps to add the Stripe Customer Payment Page to a Customer Statement form in NetSuite
1. Create a custom advanced multi-currency statement pdf template (customization > forms > advanced pdf templates)
1. Add code snippet (see below). This form cannot reference the field directly like the invoice form can
1. Create a custom Statement "Form" (customization > forms > transaction forms)
1. Set the custom statement form to use the custom advanced pdf template (screenshot)
```
<table class="stripe-pay" style="width:100%; margin-top:15px;">
  <tr>
    <td align="right">
      <a href="${'https://netsuite-connector.stripe.com/payment/stripe_account_id/test_or_live_delete_one/customer/' + customer.id + '/' + customer.custentity_customer_payment_page_guid}" style="background-color:#2976F3; color:#FFFFFF; padding:10px 24px; text-decoration:none; font-weight:bold; border-radius:4px; display:inline-block;">Pay Your Balance Online</a>
    </td>
  </tr>
</table>
```
Example of the settings to use on the custom statement form