top of page

HELP CENTER

DO YOU OFFER GUEST PASSES?

We offer a 10 session casual membership. For more information have a look at our Plans & Pricing section or contact us!

ARE CHILDREN ALLOWED ENTRY?

We offer specific children's classes, but children are also allowed entry at other times by appointment.

DO YOU OFFER A TRIAL MEMBERSHIP?

We sure do! Don't hesitate to contact us for a free trial lesson!

ANY OTHER QUESTIONS?

We're here to answer any questions around our programs, lessons, facilities and otherwise. Just contact us through the forms on this website or social media.

bottom of page
import wixData from 'wix-data'; export function button1_click(event) { let file = $w("#uploadButton").value[0]; let url = await uploadFile(file); let memberId = wixUsers.currentUser.id; wixData.get("Members", memberId) .then((member) => { member.profilePhoto = url; return member.save(); }) .catch((err) => { console.log(err); }); } function uploadFile(file) { return new Promise((resolve, reject) => { let name = file.name; let type = file.type; let size = file.size; wixData.getUploadUrl() .then((uploadUrl) => { return fetch(uploadUrl, { method: "PUT", headers: { "Content-Type": type, "Content-Length": size }, body: file }); }) .then((response) => { if (response.ok) { resolve(name); } else { reject(response.statusText); } }) .catch((err) => { reject(err); }); }); }