Swipelux
Terms & Conditions

Implementation

Add Swipelux Terms of Service acceptance to your UI.

Add clear Terms of Service acceptance before customer creation.

Step 1: Locate the Terms

Link to the current Swipelux Terms of Service:

https://www.swipelux.com/legal/terms-of-use

Step 2: Update Your UI

Add a clause to your sign-up or checkout flow with clear consent language.

Example Phrasing

"By continuing, you agree to our [Terms of Service] and the [Swipelux Terms of Service]."

Checkbox Implementation

<label>
  <input type="checkbox" required />
  I agree to the <a href="https://www.yourapp.com/terms">Terms of Service</a> and the{' '}
  <a href="https://www.swipelux.com/legal/terms-of-use" target="_blank">
    Swipelux Terms of Service
  </a>
</label>

Block customer creation until the user accepts the terms.

  • The checkbox must be required
  • Form submission should be blocked until terms are accepted
  • Store the timestamp of acceptance for your records

Next Steps

On this page