$w.onReady(function () { // Event handler for driver registration form submission $w('#driverSubmitButton').onClick(() => { const driverName = $w('#driverNameInput').value; const driverEmail = $w('#driverEmailInput').value; // Add more fields as necessary // Validate inputs if (driverName && driverEmail) { // Submit driver registration data wixData.insert('Drivers', { name: driverName, email: driverEmail // Add more fields as necessary }).then(() => { console.log('Driver registered successfully'); }).catch((error) => { console.error('Error registering driver:', error); }); } else { console.error('Please fill in all required fields for driver registration'); } }); // Event handler for rider registration form submission $w('#riderSubmitButton').onClick(() => { const riderName = $w('#riderNameInput').value; const riderEmail = $w('#riderEmailInput').value; // Add more fields as necessary // Validate inputs if (riderName && riderEmail) { // Submit rider registration data wixData.insert('Riders', { name: riderName, email: riderEmail // Add more fields as necessary }).then(() => { console.log('Rider registered successfully'); }).catch((error) => { console.error('Error registering rider:', error); }); } else { console.error('Please fill in all required fields for rider registration'); } }); });
top of page

Refund Policy

A legal disclaimer

The explanations and information provided on this page are only general and high-level explanations and information on how to write your own document of a Refund Policy. You should not rely on this article as legal advice or as recommendations regarding what you should actually do, because we cannot know in advance what are the specific refund policies that you wish to establish between your business and your customers. We recommend that you seek legal advice to help you understand and to assist you in the creation of your own Refund Policy.

Refund Policy - the basics

Having said that, a Refund Policy is a legally binding document that is meant to establish the legal relations between you and your customers regarding how and if you will provide them with a refund. Online businesses selling products are sometimes required (depending on local laws and regulations) to present their product return policy and refund policy. In some jurisdictions, this is needed in order to comply with consumer protection laws. It may also help you avoid legal claims from customers that are not satisfied with the products they purchased.

What to include in the Refund Policy

Generally speaking, a Refund Policy often addresses these types of issues: the timeframe for asking for a refund; will the refund be full or partial; under which conditions will the customer receive a refund; and much, much more.

bottom of page